forked from OpenIdentityPlatform/OpenIDM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile-common.js
388 lines (380 loc) · 12.8 KB
/
Gruntfile-common.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
/**
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2016 ForgeRock AS.
*/
module.exports = function(grunt, options) {
var buildCompositionDirs = [
"target/dependencies",
"target/dependency",
"target/classes"
],
watchCompositionDirs = options.watchCompositionDirs.concat([
"../openidm-ui-common/src/main/js",
"../openidm-ui-common/src/main/resources",
"src/main/js",
"src/main/resources"
]),
testCompositionDirs = {
"../openidm-ui-common/src/test/qunit": "/",
"src/test/qunit": "/tests"
},
targetVersion = grunt.option("target-version") || "dev",
mavenSrcPath = "src/main/js",
compositionDirectory = "target/compose",
compiledDirectory = "target/www",
transpiledDirectory = "target/transpiled",
testDirectory = "target/qunit",
deployDirectory = "../../openidm-zip/target/openidm/ui/" + options.deployDirectory,
lessFiles = [{
src: compositionDirectory + "/css/structure.less",
dest: compiledDirectory + "/css/structure.css"
}, {
src: compositionDirectory + "/css/theme.less",
dest: compiledDirectory + "/css/theme.css"
}];
grunt.initConfig({
babel: {
/**
* Transpile the ES6 sources to ES5.
*/
source: {
files: [{
expand: true,
cwd: compositionDirectory,
src: [
"org/**/*.js",
"config/**/*.js"
],
dest: transpiledDirectory
}]
},
test: {
files: Object.keys(testCompositionDirs).map(function (dir) {
return {
expand: true,
cwd: dir,
src: ["**/*.js"],
dest: testDirectory + testCompositionDirs[dir]
}
}),
options: {
sourceMaps: true
}
}
},
copy: {
/**
* Copy all the sources and resources from this project and all dependencies into the composition directory.
*
* TODO: This copying shouldn't really be necessary, but is required because the dependencies are all over
* the place. If we move to using npm for our dependencies, this can be greatly simplified.
*/
compose: {
files: buildCompositionDirs.map(function (dir) {
return {
expand: true,
cwd: dir,
src: ["**"],
dest: compositionDirectory
}
})
},
/**
* Copy files that do not need to be compiled into the compiled directory.
*/
compiled: {
files: [{
expand: true,
cwd: compositionDirectory,
src: [
"**",
"!org/**/*.js", // Transpiled
"!config/**/*.js", // Transpiled
"!**/*.less" // Compiled to CSS files
],
dest: compiledDirectory
}]
},
/**
* Copy the main file. This is used when skipping the requirejs step.
*/
compiledMain: {
files: [{
src: compositionDirectory + "/main.js",
dest: compiledDirectory + "/main.js"
}],
compareUsing: "md5"
},
/**
* Copy files that have been transpiled into the compiled directory.
*/
transpiled: {
files: [{
expand: true,
cwd: transpiledDirectory,
src: ["**/*.js"],
dest: compiledDirectory
}]
},
/**
* Copy files that do not need to be compiled into the test directory.
*/
test: {
files: Object.keys(testCompositionDirs).map(function (dir) {
return {
expand: true,
cwd: dir,
src: [
"**/*",
"!**/*.js" // Transpiled
],
dest: testDirectory + testCompositionDirs[dir]
}
})
}
},
replace: {
/**
* Include the version of IDM in the index file.
*
* This is needed to force the browser to refetch JavaScript files when a new version of IDM is deployed.
*/
buildNumber: {
src: compositionDirectory + "/index.html",
dest: compiledDirectory + "/index.html",
replacements: [{
from: "${version}",
to: targetVersion
}]
}
},
eslint: {
/**
* Check the JavaScript source code for common mistakes and style issues.
*/
lint: {
src: [
mavenSrcPath + "/**/*.js"
],
options: {
format: options.eslintFormatter
}
}
},
less: {
/**
* Compile LESS source code into minified CSS files.
*/
dev: {
files: lessFiles
},
prod: {
files: lessFiles,
options: {
compress: true,
plugins: options.lessPlugins
}
},
options: {
relativeUrls: true
}
},
notify_hooks: {
options: {
enabled: true,
title: "QUnit Tests"
}
},
qunit: {
/**
* Run the unit tests using Puppeteer.
*/
test: [ testDirectory + '/index.html'],
options: {
timeout: 20000,
puppeteer: {
ignoreDefaultArgs: true,
args: [
"--headless=new",
"--allow-file-access-from-files",
"--disable-dev-shm-usage"
]
}
}
},
requirejs: {
/**
* Concatenate and uglify the JavaScript.
*/
compile: {
options: {
baseUrl: compiledDirectory,
mainConfigFile: compiledDirectory + "/main.js",
out: compiledDirectory + "/main.js",
include: ["main"],
preserveLicenseComments: false,
generateSourceMaps: true,
optimize: "uglify2",
// This file is excluded from optimization so that the UI can be customized without having to
// repackage it.
excludeShallow: [
"config/AppConfiguration"
]
}
}
},
sync: {
/**
* Copy all the sources and resources from this project and all dependencies into the composition directory.
*/
compose: {
files: watchCompositionDirs.map(function (dir) {
return {
cwd: dir,
src: ["**"],
dest: compositionDirectory
}
}),
compareUsing: "md5"
},
/**
* Copy files that do not need to be compiled into the compiled directory.
*
* Note that this also copies main.js because the requirejs step is not being performed when watching (it
* is too slow).
*/
compiled: {
files: [{
cwd: compositionDirectory,
src: [
"**",
"!**/*.less" // Compiled to CSS files
],
dest: compiledDirectory
}],
compareUsing: "md5"
},
/**
* Copy files that have been transpiled (with their source maps) into the compiled directory.
*/
transpiled: {
files: [{
cwd: transpiledDirectory,
src: [
"**/*.js",
"**/*.js.map"
],
dest: compiledDirectory
}],
compareUsing: "md5"
},
/**
* Copy the test source files into the test target directory.
*/
test: {
files: Object.keys(testCompositionDirs).map(function (inputDirectory) {
return {
cwd: inputDirectory,
src: ["**"],
dest: testDirectory + testCompositionDirs[inputDirectory]
};
}),
verbose: true,
compareUsing: "md5" // Avoids spurious syncs of touched, but otherwise unchanged, files (e.g. CSS)
},
/**
* Copy the compiled files to the deploy directory.
*/
deploy: {
files: [{
cwd: compositionDirectory,
src: [
"**",
"!**/*.less"
],
dest: deployDirectory
}, {
cwd: compiledDirectory,
src: ["**/*.css"],
dest: deployDirectory
}],
verbose: true,
compareUsing: "md5" // Avoids spurious syncs of touched, but otherwise unchanged, files (e.g. CSS)
}
},
watch: {
/**
* Redeploy whenever any source files change.
*/
source: {
files: watchCompositionDirs.concat(Object.keys(testCompositionDirs)).map(function (dir) {
return dir + "/**";
}),
tasks: ["deploy"]
}
}
});
grunt.loadNpmTasks("grunt-babel");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-less");
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks("grunt-contrib-requirejs");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-eslint");
grunt.loadNpmTasks("grunt-newer");
grunt.loadNpmTasks('grunt-notify');
grunt.loadNpmTasks("grunt-sync");
grunt.loadNpmTasks("grunt-text-replace");
grunt.registerTask('build:dev', [
'copy:compose',
'eslint',
'babel:source',
'less:dev',
'copy:compiled',
'copy:compiledMain',
'copy:transpiled',
"replace",
'babel:test',
'copy:test',
'qunit'
]);
grunt.registerTask('build:prod', [
'copy:compose',
'eslint',
'babel:source',
'less:prod',
'copy:compiled',
'copy:transpiled',
'requirejs',
"replace",
'babel:test',
'copy:test',
'qunit'
]);
grunt.registerTask("deploy", [
"sync:compose",
'babel:source',
"less:dev",
"sync:compiled",
"sync:transpiled",
"newer:babel:test",
'copy:test',
"sync:deploy",
'qunit',
'eslint'
]);
grunt.registerTask("dev", ["copy:compose", "deploy", "watch"]);
grunt.registerTask("default", "dev");
grunt.task.run('notify_hooks');
};