forked from dspies/ua-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
284 lines (254 loc) · 7.67 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
'use strict';
// # Globbing
// for performance reasons we're only matching one level down:
// 'test/spec/{,*/}*.js'
// use this if you want to recursively match all subfolders:
// 'test/spec/**/*.js'
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Time how long tasks take. Can help when optimizing build times
require('time-grunt')(grunt);
// Define the configuration for all the tasks
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner: [
'/**',
' * <%= pkg.description %>',
' * @version v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>',
' * @link <%= pkg.homepage %>',
' * @author <%= pkg.author %>',
' * @license MIT License, http://www.opensource.org/licenses/MIT',
' */'
].join('\n')
},
// Project settings
yeoman: {
// configurable paths
app: require('./bower.json').appPath || 'app',
dist: 'dist',
staging: 'staging'
},
// Watches files for changes and runs tasks based on the changed files
watch: {
dev: {
files: [
'test/spec/{,*/}*.js',
'<%= yeoman.app %>/scripts/{,*/}*.js'
],
tasks: ['unit-test']
},
gruntfile: {
files: ['Gruntfile.js'],
tasks: ['newer:jshint:gruntfile']
}
},
// Make sure code styles are up to par and there are no obvious mistakes
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
gruntfile: [
'Gruntfile.js'
],
source: [
'<%= yeoman.app %>/scripts/{,*/}*.js'
],
test: {
options: {
jshintrc: 'test/.jshintrc'
},
src: ['test/spec/{,*/}*.js']
},
dist: {
src: ['<%= yeoman.dist %>/{,*/}*.js']
}
},
// Empties folders to start fresh
clean: {
staging: '<%= yeoman.staging %>',
dist: '<%= yeoman.dist %>'
},
// Allow the use of non-minsafe AngularJS files. Automatically makes it
// minsafe compatible so Uglify does not destroy the ng references
ngmin: {
staging: {
files: [{
expand: true,
cwd: '<%= yeoman.staging %>',
src: '<%= pkg.name %>.js',
dest: '<%= yeoman.staging %>/ngmin'
}]
}
},
// Copies remaining files to places other tasks can use
copy: {
dist: {
files: [{
expand: true,
dot: true,
cwd: '<%= yeoman.staging %>/ngmin',
dest: '<%= yeoman.dist %>',
src: [
'<%= pkg.name %>.js'
]
}]
},
staging: {
files: [{
expand: true,
dot: true,
flatten: true,
filter: 'isFile',
cwd: '<%= yeoman.app %>/scripts',
dest: '<%= yeoman.staging %>/',
src: [
'**'
]
}]
}
},
//Minify the release code
uglify: {
dist: {
options: {
sourceMap: '<%= yeoman.dist %>/<%= pkg.name %>.map'
},
files: {
'<%= yeoman.dist %>/<%= pkg.name %>.min.js': ['<%= yeoman.dist %>/<%= pkg.name %>.js']
}
}
},
concat: {
options: {
stripBanners: true,
banner: [
'<%= meta.banner %>',
'(function(){',
'\t\'use strict\';',
''
].join('\n'),
footer: '\n}());',
process: function(src){
return src
.replace(/(^|\n)[ \t]*('use strict'|"use strict");?\s*/g, '$1')
.replace(/(^|\n)/g, '\n\t');
}
},
staging: {
src: [
'<%= yeoman.staging %>/module.js',
'<%= yeoman.staging %>/authenticationInterceptor.js',
'<%= yeoman.staging %>/userStorageService.js',
'<%= yeoman.staging %>/authenticationService.js',
'<%= yeoman.staging %>/securityService.js'
],
dest: '<%= yeoman.dist %>/<%= pkg.name %>.js'
}
},
//bumps the version before a release
bump: {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: ['pkg'],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['package.json', 'bower.json', 'dist'],
createTag: true,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: true,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d' // options to use with '$ git describe'
}
},
// Test settings
karma: {
unit: {
configFile: 'karma.conf.js',
singleRun: true
}
}
});
grunt.registerTask('add-dist-git', function(){
return exec('git add dist').then(function (result) {
if (result.stdout.trim() !== ''){
throw 'Unable to add dist directory';
}
});
});
grunt.registerTask('compile', [
'clean', //Runs all clean tasks to clean staging and dist directories
'copy:staging', //Copies files to the staging directory
'concat', //Concatenates specified files in the staging directory
'ngmin', //Makes concatenated Angular code in staging directory min-safe
'copy:dist', //Copies concatenated, min-safe code to dist directory
'jshint:dist', //Lints the code in dist directory
'uglify', //Minifies the code in dist directory and creates a source map
'clean:staging' //Removes the staging directory
]);
grunt.registerTask('unit-test', [
'lint', //Runs jshint on development code (src, test, gruntfile)
'karma' //Runs unit-test using karma
]);
grunt.registerTask('e2e-test', []);
grunt.registerTask('lint', [
'jshint:gruntfile', //Lints the gruntfile
'jshint:source', //Lints all the files in /app/scripts
'jshint:test' //Lints all the test code in /test/spec using .jshintrc file in test directory
]);
grunt.registerTask('build', [
'unit-test', //Runs unit tests
'e2e-test', //Runs end-to-end tests
'compile' //Generates distributable files
]);
grunt.registerTask('release', function (releaseType) {
if (['major', 'minor', 'patch'].indexOf(releaseType) === -1) {
return grunt.util.error('Release type was ' + releaseType + ' but it must be either major, minor, or patch');
}
promising(this,
ensureCleanMaster().then(function () {
return grunt.task.run(
'bump-only:' + releaseType,
'build',
'add-dist-git',
'bump-commit'
);
})
);
});
grunt.registerTask('ci', [
'build' //test and compile the code
]);
grunt.registerTask('develop', [
'watch' //Watches /app/scripts and /test/spec for changes and runs unit-test task
]);
grunt.registerTask('default', [
'develop' //Shortcut to develop task
]);
// Helpers for custom tasks, mainly around promises / exec
var exec = require('faithful-exec');
function promising(task, promise) {
var done = task.async();
promise.then(function () {
done();
}, function (error) {
grunt.log.write(error + '\n');
done(false);
});
}
function ensureCleanMaster() {
return exec('git symbolic-ref HEAD').then(function (result) {
if (result.stdout.trim() !== 'refs/heads/master') {
throw 'Not on master branch, aborting';
}
return exec('git status --porcelain');
}).then(function (result) {
if (result.stdout.trim() !== '') {
throw 'Working copy is dirty, aborting';
}
});
}
};