-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
150 lines (150 loc) · 4.04 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
module.exports = function ( grunt ) {
// load NPM tasks
[
'grunt-contrib-copy',
'grunt-contrib-uglify',
'grunt-rsync',
'grunt-contrib-jasmine',
'grunt-contrib-connect',
'grunt-contrib-watch',
'grunt-open',
'grunt-contrib-sass',
'grunt-contrib-jshint'
].forEach( function ( name ) {
this.loadNpmTasks( name );
}, grunt );
// init configuration
grunt.initConfig({
copy : {
release : {
files : [{
expand : true,
cwd : 'project',
dest : 'build',
src : ['*.html']
}]
}
},
uglify : {
my_target : {
files : [{
expand : true,
cwd : 'project/Scripts',
src : '**/*.js',
dest : 'build/Scripts'
}]
}
},
rsync : {
options : {
args : [
'--verbose',
/*"-e 'ssh -p 2222'"*/ // uncomment this line to use a different port than the default 22
],
recursive : true
},
prod : {
options : {
src : 'build/',
dest : '~/public_html/grunt-tutorial',
host : '[email protected]'
}
}
},
jasmine : {
shell : {
options : {
specs : ['tests/**/*.js'],
vendor : ['project/Scripts/lib/**/*.js']
},
src : ['project/Scripts/**/*.js', '!project/Scripts/lib/**/*.js']
}
},
connect : {
server : {
options : {
port : 9000,
middleware : function ( connect ) {
var path = require('path');
return [
connect.static( path.resolve('project') )
];
}
}
}
},
open : {
server : {
path : 'http://localhost:9000'
}
},
watch : {
sass : {
files : ['project/sass/*.{sass,scss}'],
tasks : ['sass:dev']
},
app : {
files : ['project/**/*.*'],
tasks : ['open:server']
}
},
sass : {
options : {
cacheLocation : '.tmp/.sass-cache'
},
// sub-task
dev : {
options : {
style : 'expanded',
lineComments : true
},
files : [{
expand : true,
cwd : 'project/sass/', // current working directory
dest : 'project/css/',
src : '**/*.{sass, scss}',
ext : '.css'
}]
},
// sub-task
prod : {
options : {
style : 'compressed'
},
files : [{
expand : true,
cwd : 'project/sass/', // current working directory
dest : 'build/css/',
src : '**/*.{sass, scss}',
ext : '.css'
}]
}
},
jshint : {
all : [
'Gruntfile.js',
'project/Scripts/**/*.js', // "/**/" means recursively
'!project/Scripts/lib/**/*.js' // "!" means exclude
]
}
});
// custom tasks
grunt.registerTask('livereload', 'Starts a server & opens the browser', [
'connect',
'open',
'watch'
]);
grunt.registerTask('test', 'Code linting & unit testing', [
'jshint',
'jasmine'
]);
grunt.registerTask('build', 'Create a build, minimize files', [
'sass:prod',
'copy',
'uglify'
]);
grunt.registerTask('deploy', 'Deploy latest build on production', [
'build',
'rsync'
]);
};