-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGruntfile.js
279 lines (242 loc) · 8.37 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
var _ = require('lodash');
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-ngmin');
grunt.loadNpmTasks('grunt-angular-templates');
grunt.loadNpmTasks('grunt-contrib-csslint');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-lesslint');
var config = {
jsDistDir: 'public/js/apps',
cssDistDir: 'public/css',
lessDir: 'src/less',
jsDir: 'src/js/client/apps',
buildDir: 'build'
};
var lessFiles = {
'<%= config.cssDistDir %>/main.min.css' : [
'public/lib/bootstrap/dist/css/bootstrap.min.css',
'<%= config.lessDir %>/layout.less',
'<%= config.lessDir %>/pages/intro.less',
'<%= config.lessDir %>/pages/home.less'
]
};
function generateJSAppConfigs() {
var apps = [];
// Find the apps to build
grunt.file.recurse(config.jsDir + '/', function callback(abspath, rootdir, subdir, filename) {
var name = subdir.split('/')[0];
if (!_.contains(apps, name)) {
apps.push(name);
}
});
_(apps).forEach(function(appName) {
var jsSrcFiles = config.jsDir + '/' + appName + '/**/*.js';
var partialsDir = config.jsDir + '/' + appName + '/partials/';
var partialFiles = partialsDir + '**/*.html';
var jsBuildDir = config.buildDir + '/';
var jsBuildFile = jsBuildDir + appName + '.js';
var jsBuildPartialsFile = jsBuildDir + appName + '.partials.js';
var jsDistFile = config.jsDistDir + '/' + appName + '.js';
/**
* Setup NG Templates
*/
var ngTemplatesConfig = {
options: {
module: appName + '.partials',
standalone: true,
htmlmin: {
collapseBooleanAttributes: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true, // Only if you don't use comment directives!
removeRedundantAttributes: true
}
},
cwd: config.jsDir,
src: [ appName + '/partials/**.html'],
dest: jsBuildPartialsFile
};
grunt.config('ngtemplates.' + appName, ngTemplatesConfig);
var ngMinConfig = {
files: [{
src: jsBuildFile,
dest: jsDistFile
}]
};
grunt.config('ngmin.' + appName, ngMinConfig);
/**
* Concat settings
*/
var concatConfigObj = {
src: [jsSrcFiles, jsBuildPartialsFile],
dest: jsBuildFile
};
grunt.config('concat.' + appName, concatConfigObj);
/**
* Uglify settings
*/
var uglifyConfigObj = {
options: {
banner: '/*! ' + appName + ' - ' + grunt.template.today("yyyy-mm-dd") + ' */',
compress: true,
report: 'gzip',
preserveComments: false
},
files: {}
};
uglifyConfigObj.files[jsDistFile] = [jsDistFile];
grunt.config('uglify.' + appName, uglifyConfigObj);
var watchConfigObj = {
files: [
jsSrcFiles,
partialFiles
],
tasks: [
'ngtemplates:' + appName,
'concat:' + appName,
'ngmin:' + appName
]
};
grunt.config('watch.' + appName, watchConfigObj);
});
}
// Project configuration.
grunt.initConfig({
config:config,
// Protect angular code from minification
ngmin: {},
// Compile angular templates
ngtemplates: {},
// Merge files together
concat: {},
// Delete files
clean: {
dist: {
src: ['public/js', 'public/css', 'build']
}
},
less: {
development: {
options: {
paths: ['<%= config.lessDir %>'],
yuicompress: false
},
files: lessFiles
},
production: {
options: {
paths: ['<%= config.lessDir %>'],
yuicompress: true
},
files: lessFiles
}
},
// Test runner
karma: {
options: {
configFile: 'test/js/config/karma.conf.js',
port: grunt.option('port') || 9876
},
dev: {
singleRun: true,
browsers: ['Chrome', 'Firefox']
},
prod: {
singleRun: true,
browsers: ['Chrome', 'Firefox']
},
phantom: {
browsers: ['PhantomJS']
}
},
// JS lint
jshint: {
all: ['web-app/src/apps/**/*.js'],
options:{
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
unused: false,
browser: true,
strict: true,
jquery: true,
globals:{
angular:true,
console: true
},
reporter: 'jslint',
reporterOutput: 'build/reports/jshint/jshint.xml'
}
},
// CSS lint
csslint: {
options: {
formatters: [
{id: 'lint-xml', dest: 'build/reports/csslint/csslint.xml'}
],
ids: false,
import: 2,
"box-sizing": false,
"box-model": false,
"outline-none": false,
"qualified-headings": false,
"unique-headings": false,
"universal-selector": false,
"duplicate-background-images": false,
"overqualified-elements": false,
"important": false,
"known-properties": false,
"fallback-colors": false,
"star-property-hack": false,
"duplicate-properties": false,
"display-property-grouping": false,
"compatible-vendor-prefixes": false,
"adjoining-classes": false,
"vendor-prefix": false,
"text-indent": false
},
src: ['css/**/*.css']
},
// Less lint
lesslint: {
src: ['web-app/src/less/**/*.less']
},
uglify: {
options: {
compress: true,
mangle: {
except: ['angular', 'jQuery']
}
}
},
watch: {
lessCss: {
files: '<%= config.lessDir %>/**/*.less',
tasks: ['less']
}
}
});
generateJSAppConfigs();
grunt.registerTask('compile', ['ngtemplates', 'concat', 'ngmin']);
grunt.registerTask('prod-assemble', ['clean:dist', 'compile', 'uglify', 'less:production']);
grunt.registerTask('dev-assemble', ['clean:dist', 'compile', 'less:development']);
grunt.registerTask('dev-run', ['dev-assemble', 'watch']);
grunt.registerTask('prod-run', ['prod-assemble', 'watch']);
grunt.registerTask('dev-test', ['dev-assemble', 'karma:dev']);
grunt.registerTask('prod-test', ['prod-assemble', 'karma:prod']);
grunt.registerTask('dev-check', ['dev-test', 'jshint']);
grunt.registerTask('prod-check', ['prod-test', 'jshint']);
};