This repository has been archived by the owner on Jul 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 208
/
gruntfile.js
465 lines (410 loc) · 17.1 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
/**
* [y] hybris Platform
*
* Copyright (c) 2000-2016 hybris AG
* All rights reserved.
*
* This software is the confidential and proprietary information of hybris
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with the terms of the
* license agreement you entered into with hybris.
*/
'use strict';
var path = require('path');
module.exports = function (grunt) {
var host = process.env.VCAP_APP_HOST || process.env.HOST || '0.0.0.0';
var port = process.env.VCAP_APP_PORT || process.env.PORT || 9000; //process.env.VCAP_APP_PORT is deprecated
// Configuration Variables.
var JS_DIR = 'public/js/app',
LESS_DIR = 'public/less',
TRANSLATIONS_DIR = 'public/js/app/shared/i18n/dev',
ALLOWED_REGIONS = ['eu'],
REGION_INVALID_MSG = 'Selected region is not valid, changing back to default region. Please provide one of valid regions: [' + ALLOWED_REGIONS.join(',') + ']',
//--Set Parameters for Server Configuration----------------------------------------------------
// Read npm argument and set the dynamic server environment or use default configuration.
// Syntax example for npm 2.0 parameters: $ npm run-script singleProd -- --pid=xxx --cid=123 --ruri=http://example.com
PROJECT_ID = grunt.option('pid') || 'saphybriscaas',
CLIENT_ID = grunt.option('cid') || 'hkpWzlQnCIe4MSTi1Ud94Q7O36aRrRrO',
REDIRECT_URI = grunt.option('ruri') || 'http://example.com',
USE_HTTPS = grunt.option('https') || false,
REGION_CODE = grunt.option('region') || '',
SERVER_FILES = ['./server.js', './server/singleProdServer.js', './multi-tenant/multi-tenant-server.js'],
PROJECT_ID_PATH = './public/js/app/shared/app-config.js',
PROD_DOMAIN = 'api{0}.yaas.io',
STAGE_DOMAIN = 'api.stage.yaas.io',
API_DOMAIN_PATH = './public/js/app/shared/app-config.js',
TRANSLATE_FILES_PATH = './public/js/app/shared/i18n/lang/lang_*.json',
DOMAIN_MSG = 'Could not find environment domain in build parameter. Site is built with default API domain. Use grunt build:prod [:stage] to specify.';
var getProdBaseUrl = function getProdBaseUrl(regionCode) {
if (!!regionCode && ALLOWED_REGIONS.indexOf(regionCode) < 0) {
grunt.option('force', true);
grunt.warn(REGION_INVALID_MSG);
regionCode = '';
}
if (!!regionCode) {
return PROD_DOMAIN.replace('{0}', '.' + regionCode);
}
else {
return PROD_DOMAIN.replace('{0}', '');
}
};
require('load-grunt-tasks')(grunt);
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-angular-templates'); //combines templates into cache
// Project Configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
translations: {
files: [TRANSLATIONS_DIR + '/**'],
tasks: ['compileTranslations']
},
js: {
files: [JS_DIR + '/**'],
tasks: ['jshint:all']
},
less: {
files: [LESS_DIR + '/**'],
tasks: ['less:dev']
}
},
express: {
options: {
port: port,
hostname: host
},
singleProdServer: {
options: {
server: path.resolve('./server/singleProdServer.js'),
livereload: 35730, // use different port to avoid collision with client 'watch' operation
serverreload: true, // this will keep the server running, but may restart at a different port!!!
bases: [path.resolve('./server/singleProdServer.js')]
}
},
singleTenant: {
options: {
server: path.resolve('./server.js'),
livereload: 35730, // use different port to avoid collision with client 'watch' operation
serverreload: true, // this will keep the server running, but may restart at a different port!!!
bases: [path.resolve('./server.js')]
}
},
multiTenant: { // with livereload
options: {
server: path.resolve('./multi-tenant/multi-tenant-server.js'),
livereload: 35730, // use different port to avoid collision with client 'watch' operation
serverreload: true, // this will keep the server running, but may restart at a different port!!!
bases: [path.resolve('./multi-tenant/multi-tenant-server.js')]
}
},
production: {
options: {
server: path.resolve('./server.js'),
bases: [path.resolve('./server.js')]
}
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'gruntfile.js',
'public/js/{,**/}*.js',
'!public/js/vendor/{,**/}*.js',
'!public/js/vendor-static/{,**/}*.js'
]
},
less: {
dev: {
options: {
strictImports: true,
sourceMap: false,
sourceMapFilename: 'public/css/app/style.css.map',
sourceMapURL: 'http://localhost/css/style.css.map'
},
files: {
'public/css/app/style.css': 'public/less/main.less'
}
},
dist: {
options: {
compress: true,
strictImports: false,
sourceMap: false
},
files: {
'public/css/app/style.css': 'public/less/main.less'
}
}
},
concurrent: {
singleProject: {
tasks: ['express:singleTenant', 'watch'], //server.js
options: {
logConcurrentOutput: true
}
},
multiProject: {
tasks: ['express:multiTenant', 'watch'], //multi-tenant-server.js
options: {
logConcurrentOutput: true
}
},
singleProdServer: {
tasks: ['express:singleProdServer', 'watch'],
options: {
logConcurrentOutput: true
}
},
dist: []
},
clean: {
dist: {
files: [
{
dot: true,
src: ['.tmp', 'dist/*']
}
]
}
},
copy: {
main: {
dot: true,
expand: true,
cwd: 'public/',
src: [
'**', 'js/**', '!scss/**', '!css/app/**', '!less/**', '!stylesheets/**',
'../.buildpacks', '../.jshintrc', '../.bowerrc', '../bower.json',
'../gruntfile.js', '../License.md', '../package.json', '../products.json',
'../multi-tenant/**', '../server/**', '../server.js'],
dest: 'dist/public/'
},
translations: {
files: [
{
expand: true,
cwd: 'public/js/app/shared/i18n/dev/',
src: ['*.json'],
dest: 'public/js/app/shared/i18n/lang/',
rename: function (dest, src) {
return dest + src.replace(/^dev_/, 'lang_');
}
}
]
}
},
rev: {
files: {
src: ['dist/public/**/*.{js,css}']
}
},
karma: {
unit: { configFile: 'config/karma.conf.js', keepalive: true }
},
useminPrepare: {
html: './public/index.html', //concat and minify all script tags in html build blocks.
options: { //concats in .tmp
dest: 'dist/public' //minifies result at path in html block under this directory
}
},
usemin: {
html: ['dist/public/index.html'] //runs replacement tasks on index.
},
replace: {
stage: {
src: [API_DOMAIN_PATH],
overwrite: true,
replacements: [{
from: /StartDynamicDomain(.*)EndDynamicDomain/g,
to: 'StartDynamicDomain*/ \'' + STAGE_DOMAIN + '\' /*EndDynamicDomain'
}]
},
prod: {
src: [API_DOMAIN_PATH],
overwrite: true,
replacements: [{
from: /StartDynamicDomain(.*)EndDynamicDomain/g,
to: 'StartDynamicDomain*/ \'' + getProdBaseUrl(REGION_CODE) + '\' /*EndDynamicDomain'
}]
},
projectId: {
src: [PROJECT_ID_PATH],
overwrite: true,
replacements: [{
from: /StartProjectId(.*)EndProjectId/g,
to: 'StartProjectId*/ \'' + PROJECT_ID + '\' /*EndProjectId'
}]
},
clientId: {
src: [PROJECT_ID_PATH],
overwrite: true,
replacements: [{
from: /StartClientId(.*)EndClientId/g,
to: 'StartClientId*/ \'' + CLIENT_ID + '\' /*EndClientId'
}]
},
redirectURI: {
src: [PROJECT_ID_PATH],
overwrite: true,
replacements: [{
from: /StartRedirectURI(.*)EndRedirectURI/g,
to: 'StartRedirectURI*/ \'' + REDIRECT_URI + '\' /*EndRedirectURI'
}]
},
useHttps: {
src: SERVER_FILES,
overwrite: true,
replacements: [{
from: /StartUseHTTPS(.*)EndUseHTTPS/g,
to: 'StartUseHTTPS*/ ' + !!USE_HTTPS + ' /*EndUseHTTPS'
}]
}
},
ngtemplates: {
app: { //compile html templates into angular min.js concatenation.
cwd: './public/',
src: [
'js/app/home/templates/home.html',
'js/app/shared/templates/top-navigation.html',
'js/app/shared/templates/sidebar-navigation.html',
'js/app/cart/templates/cart.html',
'js/app/auth/templates/signup.html',
'js/app/auth/templates/signin.html'
//too many slows down time to render.
//'js/app/auth/templates/auth.html',
//'js/app/shared/templates/language-selector.html',
//'js/app/shared/templates/currency-selector.html',
],
dest: '.tmp/concat/js/template.js', //temp concatenation location.
htmlmin: { // minify html configuration.
collapseBooleanAttributes: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
},
options: {
usemin: 'js/storefront.js', //concat temp with usemin output.
module: 'ds.app' //module to append templateCache code.
}
}
},
'json-minify': {
translations: {
files: TRANSLATE_FILES_PATH
}
}
});
grunt.option('force', true);
//--Convenience-Tasks-----------------------------------------------
// Wrap dev build task with parameters and dynamic domain warnings.
grunt.registerTask('default', 'Build parameters for default',
function () {
grunt.task.run('build');
});
// Wrap build task with parameters and dynamic domain warnings.
grunt.registerTask('build', 'Build parameters for build',
function (domainParam) {
grunt.task.run('replace:projectId');
grunt.task.run('replace:clientId');
grunt.task.run('replace:redirectURI');
grunt.task.run('replace:useHttps');
runDomainReplace(domainParam);
grunt.task.run('jshint');
grunt.task.run('less:dev');
grunt.task.run('optimizeCode');
});
//--Tasks-With-Environment-Parameters----------------------------------------------
// Wrap build task with parameters and dynamic domain warnings.
grunt.registerTask('singleProject', 'Build parameters for singleProject build',
function (domainParam) {
grunt.task.run('replace:projectId');
grunt.task.run('replace:clientId');
grunt.task.run('replace:redirectURI');
grunt.task.run('replace:useHttps');
runDomainReplace(domainParam);
grunt.task.run('singleProjectTask');
});
// Wrap build task with parameters and dynamic domain warnings.
grunt.registerTask('multiProject', 'Build parameters for multiProject build',
function (domainParam) {
grunt.task.run('replace:projectId');
grunt.task.run('replace:clientId');
grunt.task.run('replace:redirectURI');
grunt.task.run('replace:useHttps');
runDomainReplace(domainParam);
grunt.task.run('multiProjectTask');
});
// Wrap build task with parameters and dynamic domain warnings.
grunt.registerTask('prepareBuild', 'Build parameters for optimized build',
function (domainParam) {
grunt.task.run('replace:projectId');
grunt.task.run('replace:clientId');
grunt.task.run('replace:redirectURI');
grunt.task.run('replace:useHttps');
runDomainReplace(domainParam);
grunt.task.run('optimizeCode');
});
// Wrap build task with parameters and dynamic domain warnings.
grunt.registerTask('startServer', 'Start server within deploy environment',
function () {
if (grunt.option('single')) {
grunt.task.run('concurrent:singleProdServer'); // start a single server in deployed environment.
} else if (grunt.option('multiple')) {
grunt.task.run('concurrent:multiProject'); // start a multi-project server in deployed environment.
} else {
grunt.task.run('concurrent:multiProject'); // default server if none is specified.
}
});
//---Specialized-Build-Behaviors--------------------------------------------------------
grunt.registerTask('singleProjectTask', [
'jshint',
'compileTranslations',
'less:dev',
'concurrent:singleProject' //server.js
]);
grunt.registerTask('multiProjectTask', [
'jshint',
'compileTranslations',
'less:dev',
'concurrent:multiProject' //multi-tenant-server.js
]);
grunt.registerTask('compileTranslations', [
'copy:translations', //copies translation files from dev folder to lang folder
'json-minify:translations' //minifies JSON translation files
]);
grunt.registerTask('optimizeCode', [
'clean:dist', //deletes contents in the dist folder and the .tmp folder
'compileTranslations', //removes comments from dev-*.json translation files and minifies them
'less:dev', //generate style.css
'copy', //moves dev files to dist
'useminPrepare', //starts usemin process
'ngtemplates', //compile html templates into ng.
'concat',
'uglify',
'cssmin',
//'rev', //cachebusts css and js. //be careful was introducing first load latency.
'usemin' //completes usemin process.
]);
//--Dynamic-Replacement-Build-Behaviors----------------------------------------------------
// Read build parameter and set the dynamic domain for environment or give warning message.
function runDomainReplace(domainParam) {
switch ((domainParam !== undefined) ? domainParam.toLowerCase() : domainParam) {
case 'stage':
grunt.task.run('replace:stage');
break;
case 'prod':
grunt.task.run('replace:prod');
break;
default:
grunt.warn(DOMAIN_MSG);
// Default build domain if none is specified.
grunt.task.run('replace:prod');
}
}
};