forked from angular-ui/bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grunt.js
201 lines (179 loc) · 6.79 KB
/
grunt.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
var fs = require('fs');
var markdown = require('node-markdown').Markdown;
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
modules: '', //to be filled in by find-modules task
tplModules: '', //to be filled in by find-templates task
ngversion: '1.0.4',
pkg:'<json:package.json>',
meta: {
modules: 'angular.module("ui.bootstrap", [<%= modules %>]);',
tplmodules: 'angular.module("ui.bootstrap.tpls", [<%= tplModules %>]);',
all: 'angular.module("ui.bootstrap", ["ui.bootstrap.tpls", <%= modules %>]);'
},
lint: {
files: ['grunt.js','src/**/*.js']
},
watch: {
files: ['<config:lint.files>', 'template/**/*.html'],
tasks: 'before-test test-run'
},
concat: {
dist: {
src: ['<banner:meta.modules>', 'src/*/*.js'],
dest: 'dist/ui-bootstrap-<%= pkg.version %>.js'
},
dist_tpls: {
src: ['<banner:meta.all>', 'src/*/*.js', '<banner:meta.tplmodules>', 'template/**/*.html.js'],
dest: 'dist/ui-bootstrap-tpls-<%= pkg.version %>.js'
}
},
min: {
dist:{
src:['dist/ui-bootstrap-<%= pkg.version %>.js'],
dest:'dist/ui-bootstrap-<%= pkg.version %>.min.js'
},
dist_tpls:{
src:['dist/ui-bootstrap-tpls-<%= pkg.version %>.js'],
dest:'dist/ui-bootstrap-tpls-<%= pkg.version %>.min.js'
}
},
html2js: {
src: ['template/**/*.html']
},
jshint: {
options: {
curly: true,
immed: true,
newcap: true,
noarg: true,
sub: true,
boss: true,
eqnull: true
},
globals: {}
}
});
//register before and after test tasks so we've don't have to change cli options on the goole's CI server
grunt.registerTask('before-test', 'lint html2js');
grunt.registerTask('after-test', 'find-modules find-templates concat min site');
// Default task.
grunt.registerTask('default', 'before-test test after-test');
//Common ui.bootstrap module containing all modules
grunt.registerTask('find-modules', 'Generate ui.bootstrap module depending on all existing directives', function() {
var modules = grunt.file.expandDirs('src/*').map(function(dir) {
return '"ui.bootstrap.' + dir.split("/")[1] + '"';
});
grunt.config('modules', modules);
});
grunt.registerTask('find-templates', 'Generate template modules depending on all existing directives', function() {
var tplModules = grunt.file.expand('template/**/*.html').map(function(file) {
return '"'+file+'"';
});
grunt.config('tplModules', tplModules);
});
grunt.registerTask('site', 'Create grunt demo site from every module\'s files', function() {
this.requires('find-modules concat html2js');
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();
});
}
var modules = grunt.file.expandDirs('src/*').map(function(dir) {
var moduleName = dir.split("/")[1];
if (fs.existsSync(dir + "docs")) {
return {
name: moduleName,
displayName: ucwords(breakup(moduleName, ' ')),
js: grunt.file.expand(dir + "docs/*.js").map(grunt.file.read).join(''),
html: grunt.file.expand(dir + "docs/*.html").map(grunt.file.read).join(''),
description: grunt.file.expand(dir + "docs/*.md").map(grunt.file.read).map(markdown).join('')
};
}
}).filter(function(module){
return module !== undefined;
});
var templateFiles = grunt.file.expand("template/**/*.html.js");
grunt.file.write(
'dist/index.html',
grunt.template.process(grunt.file.read('misc/demo-template.html'), {
modules: modules,
templateModules: templateFiles.map(function(fileName) {
return "'"+fileName.substr(0, fileName.length - 3)+"'";
}),
templates: templateFiles.map(grunt.file.read).join(''),
version : grunt.config('pkg.version'),
ngversion: grunt.config('ngversion')
})
);
grunt.file.expand('misc/demo-assets/*.*').forEach(function(path) {
grunt.file.copy(path, 'dist/assets/' + path.replace('misc/demo-assets/',''));
});
grunt.file.expand('misc/demo-assets/img/*.*').forEach(function(path) {
grunt.file.copy(path, 'dist/' + path.replace('misc/demo-assets/',''));
});
});
//Html templates to $templateCache for tests
grunt.registerMultiTask('html2js', 'Generate js versions of html template', function() {
//Put templates on ng's run function so they are global
var TPL='angular.module("<%= file %>", []).run(["$templateCache", function($templateCache){\n' +
' $templateCache.put("<%= file %>",\n "<%= content %>");\n' +
'}]);\n';
var files = grunt._watch_changed_files || grunt.file.expand(this.data);
function escapeContent(content) {
return content.replace(/"/g, '\\"').replace(/\n/g, '" +\n "').replace(/\r/g, '');
}
files.forEach(function(file) {
grunt.file.write(file + ".js", grunt.template.process(TPL, {
file: file,
content: escapeContent(grunt.file.read(file))
}));
});
});
// Testacular configuration
function runTestacular(command, options) {
var testacularCmd = process.platform === 'win32' ? 'testacular.cmd' : 'testacular';
var args = [command].concat(options);
var done = grunt.task.current.async();
var child = grunt.utils.spawn({
cmd: testacularCmd,
args: args
}, function(err, result, code) {
if (code) {
done(false);
} else {
done();
}
});
child.stdout.pipe(process.stdout);
child.stderr.pipe(process.stderr);
}
grunt.registerTask('test', 'run tests on single-run server', function() {
var options = ['--single-run', '--no-auto-watch', '--log-level=warn'];
if (process.env.TRAVIS) {
options = options.concat(['--browsers=Firefox']);
} else {
//Can augment options with command line arguments
options = options.concat(this.args);
}
runTestacular('start', options);
});
grunt.registerTask('server', 'start testacular server', function() {
var options = ['--no-single-run', '--no-auto-watch'].concat(this.args);
runTestacular('start', options);
});
grunt.registerTask('test-run', 'run tests against continuous testacular server', function() {
var options = ['--single-run', '--no-auto-watch'].concat(this.args);
runTestacular('run', options);
});
grunt.registerTask('test-watch', 'start testacular server, watch & execute tests', function() {
var options = ['--no-single-run', '--auto-watch'].concat(this.args);
runTestacular('start', options);
});
};