forked from Morgul/ui-bootstrap4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
559 lines (509 loc) · 20 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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
const marked = require('marked');
const fs = require('fs');
const _ = require('lodash');
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.util.linefeed = '\n';
grunt.initConfig({
ngversion: '1.6.1',
bsversion: '4.1.1',
modules: [],//to be filled in by build task
pkg: grunt.file.readJSON('package.json'),
dist: 'dist',
filename: 'ui-bootstrap',
filenamecustom: '<%= filename %>-custom',
meta: {
modules: 'angular.module("ui.bootstrap", [<%= srcModules %>]);',
tplmodules: 'angular.module("ui.bootstrap.tpls", [<%= tplModules %>]);',
all: 'angular.module("ui.bootstrap", ["ui.bootstrap.tpls", <%= srcModules %>]);',
cssInclude: '',
cssFileBanner: '/* Include this file in your html if you are using the CSP mode. */\n\n',
cssFileDest: '<%= dist %>/<%= filename %>-<%= pkg.version %>-csp.css',
banner: [
'/*',
' * <%= pkg.name %>',
' * <%= pkg.homepage %>\n',
' * Version: <%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>',
' * License: <%= pkg.license %>',
' */'
].join('\n')
},
delta: {
docs: {
files: ['misc/demo/index.html'],
tasks: ['after-test']
},
html: {
files: ['template/**/*.html'],
tasks: ['html2js', 'karma:watch:run']
},
js: {
files: ['src/**/*.js', '!src/**/index.js'],
tasks: ['karma:watch:run']
}
},
concat: {
dist: {
options: {
banner: '<%= meta.banner %><%= meta.modules %>\n',
footer: '<%= meta.cssInclude %>'
},
src: [], //src filled in by build task
dest: '<%= dist %>/<%= filename %>-<%= pkg.version %>.js'
},
dist_tpls: {
options: {
banner: '<%= meta.banner %><%= meta.all %>\n<%= meta.tplmodules %>\n',
footer: '<%= meta.cssInclude %>'
},
src: [], //src filled in by build task
dest: '<%= dist %>/<%= filename %>-tpls-<%= pkg.version %>.js'
}
},
copy: {
demohtml: {
options: {
//process html files with gruntfile config
processContent: grunt.template.process
},
files: [
{
expand: true,
src: ['**/*.html'],
cwd: 'misc/demo/',
dest: 'dist/'
}
]
},
demoassets: {
files: [
{
expand: true,
//Don't re-copy html files, we process those
src: ['**/**/*', '!**/*.html'],
cwd: 'misc/demo',
dest: 'dist/'
}
]
},
docs: {
files: [
{
expand: true,
src: ['**/*', '*/*'],
cwd: 'dist/',
dest: 'docs/'
}
]
}
},
uglify: {
options: {
banner: '<%= meta.banner %>'
},
dist: {
src: ['<%= concat.dist.dest %>'],
dest: '<%= dist %>/<%= filename %>-<%= pkg.version %>.min.js'
},
dist_tpls: {
src: ['<%= concat.dist_tpls.dest %>'],
dest: '<%= dist %>/<%= filename %>-tpls-<%= pkg.version %>.min.js'
}
},
html2js: {
dist: {
options: {
module: null, // no bundle module for all the html2js templates
base: '.',
rename: function(moduleName) {
return `uib/${moduleName}`;
}
},
files: [
{
expand: true,
src: ['template/**/*.html'],
ext: '.html.js'
}
]
}
},
eslint: {
files: ['Gruntfile.js', 'src/**/*.js']
},
karma: {
options: {
configFile: 'karma.conf.js'
},
watch: {
background: true
},
continuous: {
singleRun: true
},
jenkins: {
singleRun: true,
autoWatch: false,
colors: false,
reporters: ['dots', 'junit'],
browsers: ['Chrome', 'ChromeCanary', 'Firefox', 'Opera', '/Users/jenkins/bin/safari.sh']
},
travis: {
singleRun: true,
autoWatch: false,
reporters: ['dots'],
browsers: ['Firefox']
},
coverage: {
preprocessors: {
'src/*/*.js': 'coverage'
},
reporters: ['progress', 'coverage']
}
},
conventionalChangelog: {
options: {
changelogOpts: {
preset: 'angular'
},
templateFile: 'misc/changelog.tpl.md'
},
release: {
src: 'CHANGELOG.md'
}
},
shell: {
//We use %version% and evaluate it at run-time, because <%= pkg.version %>
//is only evaluated once
'release-prepare': [
'git add docs'
],
'release-complete': [
'git commit -a -m "chore(release): v%version%"',
'git tag v%version%',
'git push --follow-tags'
],
'publish': [
'rm -rf dist/*',
'cp ./docs/ui-bootstrap-%version%.js ./dist/ui-bootstrap.js',
'cp ./docs/ui-bootstrap-%version%-csp.css ./dist/ui-bootstrap-csp.css',
'cp ./docs/ui-bootstrap-tpls-%version%.js ./dist/ui-bootstrap-tpls.js',
'npm publish'
]
},
'ddescribe-iit': {
files: [
'src/**/*.spec.js'
]
}
});
//register before and after test tasks so we've don't have to change cli
//options on the google's CI server
grunt.registerTask('before-test', [/*'ddescribe-iit',*/ 'eslint', 'html2js']);
grunt.registerTask('after-test', ['build', 'copy']);
//Rename our watch task to 'delta', then make actual 'watch'
//task build things, then start test server
grunt.renameTask('watch', 'delta');
grunt.registerTask('watch', ['before-test', 'after-test', 'karma:watch', 'delta']);
// Default task.
grunt.registerTask('default', ['before-test', 'test', 'after-test']);
// Build docs
grunt.registerTask('docs', ['before-test', 'after-test', 'copy:docs']);
//Common ui.bootstrap module containing all modules for src and templates
//findModule: Adds a given module to config
const foundModules = {};
function findModule(name)
{
if(foundModules[name])
{ return; }
foundModules[name] = true;
function breakup(text, separator)
{
return text.replace(/[A-Z]/g, function(match) {
return separator + match;
});
}
function ucwords(text)
{
return text.replace(/^([a-z])|\s+([a-z])/g, function($1) {
return $1.toUpperCase();
});
}
function enquote(str)
{
return `"${str}"`;
}
function enquoteUibDir(str)
{
return enquote(`uib/${str}`);
}
const module = {
name: name,
moduleName: enquote(`ui.bootstrap.${name}`),
displayName: ucwords(breakup(name, ' ')),
srcFiles: grunt.file.expand([`src/${name}/*.js`, `!src/${name}/index.js`, `!src/${name}/index-nocss.js`]),
cssFiles: grunt.file.expand(`src/${name}/*.css`),
tplFiles: grunt.file.expand(`template/${name}/*.html`),
tpljsFiles: grunt.file.expand(`template/${name}/*.html.js`),
tplModules: grunt.file.expand(`template/${name}/*.html`).map(enquoteUibDir),
dependencies: dependenciesForModule(name),
docs: {
md: grunt.file.expand(`src/${name}/docs/*.md`)
.map(grunt.file.read).map((str) => marked(str)).join('\n'),
js: grunt.file.expand(`src/${name}/docs/*.js`)
.map(grunt.file.read).join('\n'),
html: grunt.file.expand(`src/${name}/docs/*.html`)
.map(grunt.file.read).join('\n')
}
};
const styles = {
css: [],
js: []
};
module.cssFiles.forEach(processCSS.bind(null, module.name, styles, true));
if(styles.css.length)
{
module.css = styles.css.join('\n');
module.cssJs = styles.js.join('\n');
}
module.dependencies.forEach(findModule);
grunt.config('modules', grunt.config('modules').concat(module));
}
function dependenciesForModule(name)
{
let deps = [];
grunt.file.expand([`src/${name}/*.js`, `!src/${name}/index.js`, `!src/${name}/index-nocss.js`])
.map(grunt.file.read)
.forEach(function(contents) {
//Strategy: find where module is declared,
//and from there get everything inside the [] and split them by comma
const moduleDeclIndex = contents.indexOf('angular.module(');
const depArrayStart = contents.indexOf('[', moduleDeclIndex);
const depArrayEnd = contents.indexOf(']', depArrayStart);
const dependencies = contents.substring(depArrayStart + 1, depArrayEnd);
dependencies.split(',').forEach(function(dep) {
if(dep.indexOf('ui.bootstrap.') > -1)
{
const depName = dep.trim().replace('ui.bootstrap.', '').replace(/['"]/g, '');
if(deps.indexOf(depName) < 0)
{
deps.push(depName);
//Get dependencies for this new dependency
deps = deps.concat(dependenciesForModule(depName));
}
}
});
});
return deps;
}
grunt.registerTask('dist', 'Override dist directory', function() {
const dir = this.args[0];
if(dir)
{ grunt.config('dist', dir); }
});
grunt.registerTask('build', 'Create bootstrap build files', function() {
const _ = grunt.util._;
//If arguments define what modules to build, build those. Else, everything
if(this.args.length)
{
this.args.forEach(findModule);
grunt.config('filename', grunt.config('filenamecustom'));
}
else
{
grunt.file.expand({
filter: 'isDirectory', cwd: '.'
}, 'src/*').forEach((dir) => {
findModule(dir.split('/')[1]);
});
}
const modules = grunt.config('modules');
grunt.config('srcModules', _.pluck(modules, 'moduleName'));
grunt.config('tplModules', _.pluck(modules, 'tplModules').filter((tpls) => tpls.length > 0));
grunt.config('demoModules', modules
.filter((module) => module.docs.md && module.docs.js && module.docs.html)
.sort((a, b) => {
if(a.name < b.name)
{ return -1; }
if(a.name > b.name)
{ return 1; }
return 0;
})
);
const cssStrings = _.flatten(_.compact(_.pluck(modules, 'css')));
const cssJsStrings = _.flatten(_.compact(_.pluck(modules, 'cssJs')));
if(cssStrings.length)
{
grunt.config('meta.cssInclude', cssJsStrings.join('\n'));
grunt.file.write(grunt.config('meta.cssFileDest'), grunt.config('meta.cssFileBanner') +
cssStrings.join('\n'));
grunt.log.writeln('File ' + grunt.config('meta.cssFileDest') + ' created');
}
const moduleFileMapping = _.clone(modules, true);
moduleFileMapping.forEach((module) => delete module.docs);
grunt.config('moduleFileMapping', moduleFileMapping);
const srcFiles = _.pluck(modules, 'srcFiles');
const tpljsFiles = _.pluck(modules, 'tpljsFiles');
//Set the concat task to concatenate the given src modules
grunt.config('concat.dist.src', grunt.config('concat.dist.src')
.concat(srcFiles));
//Set the concat-with-templates task to concat the given src & tpl modules
grunt.config('concat.dist_tpls.src', grunt.config('concat.dist_tpls.src')
.concat(srcFiles).concat(tpljsFiles));
grunt.task.run(['concat', 'uglify', 'makeModuleMappingFile', 'makeRawFilesJs', 'makeVersionsMappingFile']);
});
grunt.registerTask('test', 'Run tests on singleRun karma server', function() {
//this task can be executed in 3 different environments: local, Travis-CI and Jenkins-CI
//we need to take settings for each one into account
if(process.env.TRAVIS)
{
grunt.task.run('karma:travis');
}
else
{
const isToRunJenkinsTask = !!this.args.length;
if(grunt.option('coverage'))
{
const karmaOptions = grunt.config.get('karma.options'),
coverageOpts = grunt.config.get('karma.coverage');
grunt.util._.extend(karmaOptions, coverageOpts);
grunt.config.set('karma.options', karmaOptions);
}
grunt.task.run(this.args.length ? 'karma:jenkins' : 'karma:continuous');
}
});
grunt.registerTask('makeModuleMappingFile', function() {
const _ = grunt.util._;
const moduleMappingJs = 'dist/assets/module-mapping.json';
const moduleMappings = grunt.config('moduleFileMapping');
const moduleMappingsMap = _.object(_.pluck(moduleMappings, 'name'), moduleMappings);
const jsContent = JSON.stringify(moduleMappingsMap);
grunt.file.write(moduleMappingJs, jsContent);
grunt.log.writeln('File ' + moduleMappingJs.cyan + ' created.');
});
grunt.registerTask('makeRawFilesJs', function() {
const _ = grunt.util._;
const jsFilename = 'dist/assets/raw-files.json';
const genRawFilesJs = require('./misc/raw-files-generator');
genRawFilesJs(grunt, jsFilename, _.flatten(grunt.config('concat.dist_tpls.src')),
grunt.config('meta.banner'), grunt.config('meta.cssFileBanner')
);
});
grunt.registerTask('makeVersionsMappingFile', function() {
const done = this.async();
const exec = require('child_process').exec;
grunt.log.writeln(`Mapping file skipped till someone wants to fix.`);
return;
// const versionsMappingFile = 'dist/versions-mapping.json';
// exec('git tag --sort -version:refname', function(error, stdout, stderr) {
// // Let's remove the oldest 56 versions.
// const versions = stdout.split('\n').slice(0, -56);
// let jsContent = versions.map(function(version) {
// version = version.replace(/^v/, '');
// return {
// version: version,
// url: `/ui-bootstrap4/versioned-docs/${version}/index.html`
// };
// });
// jsContent = _.sortBy(jsContent, 'version').reverse();
// jsContent.unshift({
// version: 'Current',
// url: '/ui-bootstrap4/index.html'
// });
// grunt.file.write(versionsMappingFile, JSON.stringify(jsContent));
// grunt.log.writeln(`File ${versionsMappingFile.cyan} created.`);
// done();
// });
});
/**
* Logic from AngularJS
* https://github.com/angular/angular.js/blob/36831eccd1da37c089f2141a2c073a6db69f3e1d/lib/grunt/utils.js#L121-L145
*/
function processCSS(moduleName, state, minify, file)
{
let css = fs.readFileSync(file).toString(),
js;
state.css.push(css);
if(minify)
{
css = css
.replace(/\r?\n/g, '')
.replace(/\/\*.*?\*\//g, '')
.replace(/:\s+/g, ':')
.replace(/\s*\{\s*/g, '{')
.replace(/\s*\}\s*/g, '}')
.replace(/\s*\,\s*/g, ',')
.replace(/\s*\;\s*/g, ';');
}
//escape for js
css = css
.replace(/\\/g, '\\\\')
.replace(/'/g, "\\'")
.replace(/\r?\n/g, '\\n');
js = `angular.module('ui.bootstrap.${moduleName}').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uib${_.capitalize(
moduleName)}Css && angular.element(document).find('head').prepend('<style type="text/css">${css}</style>'); angular.$$uib${_.capitalize(
moduleName)}Css = true; });`;
state.js.push(js);
return state;
}
function setVersion(type, suffix)
{
const file = 'package.json';
const VERSION_REGEX = /([\'|\"]version[\'|\"][ ]*:[ ]*[\'|\"])([\d|.]*)(-\w+)*([\'|\"])/;
let contents = grunt.file.read(file);
let version;
contents = contents.replace(VERSION_REGEX, function(match, left, center) {
version = center;
if(type)
{
version = require('semver').inc(version, type);
}
//semver.inc strips our suffix if it existed
if(suffix)
{
version += '-' + suffix;
}
return left + version + '"';
});
grunt.log.ok('Version set to ' + version.cyan);
grunt.file.write(file, contents);
return version;
}
grunt.registerTask('version', 'Set version. If no arguments, it just takes off suffix', function() {
setVersion(this.args[0], this.args[1]);
});
grunt.registerMultiTask('shell', 'run shell commands', function() {
const self = this;
const sh = require('shelljs');
self.data.forEach(function(cmd) {
cmd = cmd.replace('%version%', grunt.file.readJSON('package.json').version);
grunt.log.ok(cmd);
const result = sh.exec(cmd, { silent: true });
if(result.code !== 0)
{
grunt.fatal(result.output);
}
});
});
//------------------------------------------------------------------------------------------------------------------
// New Release System
//------------------------------------------------------------------------------------------------------------------
grunt.registerTask('release', function(version) {
// Step 1, we change package.json
grunt.config.set('pkg.version', version);
grunt.file.write('./package.json', JSON.stringify(grunt.config('pkg'), null, 2));
// Step 2, we queue up additional tasks
grunt.task.run([
'conventionalChangelog',
'html2js',
'build',
'copy',
'shell:release-prepare',
'shell:release-complete',
'shell:publish'
]);
});
//------------------------------------------------------------------------------------------------------------------
return grunt;
};