-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gruntfile.js
479 lines (452 loc) · 12.3 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
//Run with
//grunt
//View the registered helpers below to understand the scopes available.
const express = require('express');
var dotenv = require('dotenv');
dotenv.config()
var localhost = 'localhost:'+process.env.LOCALHOSTPORT
var myModule = require('./app.json');
var expected = myModule.website//Get the app.json details for the website.
var timestamp = new Date().getTime();
module.exports = function(grunt) {
grunt.log.writeln('Starting the grunt');
grunt.initConfig({
bgShell: {
_defaults: {
bg: true , execOpts: {
cwd: './tasks'
},
},
'runtest': {
cmd: 'ls -la', // or function(){return 'ls -la'}
execOpts: {
cwd: 'localhost:5000'
},
stdout: true,
stderr: true,
bg: false,
fail: false,
done: function(){}
}
},
nodemon: {
dev: {
script: 'index.js'
}
},
run: {
startServ: {
options: {
wait: false
},
//cmd: "executable",
args: [
'c:/shiftbulk/index.js'
]
},runTests: {
options: {
wait: false
},
exec: 'npm run test:watch' // <-- use the exec key.
},mongodump: {
options: {
wait: false
},
path: 'c:/Program Files/MongoDB/Server/4.0/bin/',
exec: 'mongodump -h localhost:27017 -d '+process.env.MONGODBNAME+' -o ../../../../../'+process.env.MONGODBNAME+'/localhostDB' //This will generate a site map using the local host.
}
},
shell: {
sitemap: {
command: [
'node ./public/admin_localhostcrawler.js',
'Need to run custom test here to look at all sitemap links'
].join('&&') //This will generate a site map using the local host.
},
test: {
command: [
'node ./public/admin_test.js',
].join('&&') //This will generate a site map using the local host.
},
nodemon: {
command: [
'nodemon',
].join('&&') //This will generate a site map using the local host.
},
mongodumpdb: {
command: [
'cd/Program Files/MongoDB/Server/4.0/bin/',
'mongodump -h localhost:27017 -d '+process.env.MONGODBNAME+' -o ../../../../../'+process.env.MONGODBNAME+'/localhostDB',
].join('&&')
},mongodbsitepull: {
command: [
'cd/Program Files/MongoDB/Server/4.0/bin/',
'mongo '+process.env.MONGODBNAME+' --eval "db.dropDatabase()"',
//'mongodump -h '+process.env.MONGODBURI+' -d '+process.env.MONGODBNAME+' -u '+process.env.MONGODBU+' -p '+process.env.MONGODBP+' -o backup/',
'mongodump --uri '+process.env.MONGODBURI+'',
'mongorestore -h localhost:27017 -d '+process.env.MONGODBNAME+' dump/'+process.env.MONGODBNAME+'/'
].join('&&')
},seminibump: {
command: [
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'cd semini',
'npm version patch',
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'npm publish semini',
'cd..', 'cd..', 'cd..','cd shiftbulk',
'del package-lock.json',
].join('&&')
},
cleanerwrassebump: {
command: [
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'cd cleaner-wrasse',
'npm version patch',
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'npm publish cleaner-wrasse',
'cd..', 'cd..', 'cd..','cd shiftbulk',
'del package-lock.json',
].join('&&')
},heavyliftingbump: {
command: [
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'cd heavylifting',
'npm version patch',
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'npm publish heavylifting',
'cd..', 'cd..', 'cd..','cd shiftbulk',
'del package-lock.json',
].join('&&')
},fraternatebump: {
command: [
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'cd fraternate',
'npm version patch',
'cd..','cd..','cd..','cd shiftbulk',
'cd node_modules',
'npm publish fraternate',
'cd..', 'cd..', 'cd..','cd shiftbulk',
'del package-lock.json',
].join('&&')
},'savelatestsemini':{
command: [
'cd..','cd..','cd..','cd shiftbulk',
'npm install semini@latest --save',
].join('&&')
},
'savelatestfraternate':{
command: [
'cd..','cd..','cd..','cd shiftbulk',
'npm install fraternate@latest --save'
].join('&&')
},
'savelatestheavylifting':{
command: [
'cd..','cd..','cd..','cd shiftbulk',
'npm install heavylifting@latest --save',
].join('&&')
},
'savelatestcleanerwrasse':{
command: [
'cd..','cd..','cd..','cd shiftbulk',
'npm install cleaner-wrasse@latest --save',
].join('&&')
}, 'npmupdate':{
command: [
'cd..','cd..','cd..','cd shiftbulk',
'npm update',
].join('&&')
},
'openfile':openFile(),
},
zip_directories: {
irep: {
files: [{
filter: 'isDirectory',
expand: true,
cwd: '../'+process.env.MONGODBNAME+'/localhostDB',
src: ['*'],
dest: '../'+process.env.MONGODBNAME+'/localhostDBbackup/'+timestamp+"_localcopy"
}]
}
},
concurrent: {
options: {
logConcurrentOutput: true
},
mongodbdumpandzip: [ ['shell:mongodumpdb','zip_directories'] ], //dump and zip the mongo database.
mongodbpullfromserver: [ ['shell:mongodumpdb','zip_directories','shell:mongodbsitepull'] ], //dump and zip the mongo database.
starttests: [ 'nodemon' ,['run:runTests', 'wait:runTests']],//Open a new nodemon and run the server.
sitemapcreate: [ 'shell:sitemap' ],//Open a new nodemon and run the server.
test: [ 'bgShell:runtest' ],//Open a new nodemon and run the server.
bumpAll: [['shell:seminibump','shell:fraternatebump','shell:cleanerwrassebump' ,'shell:heavyliftingbump']]//Open a new nodemon and run the server.
},
spell: {
all: {
src: ['views/*.txt'],
options: {
lang: 'en',
ignore: ['cliches', 'double negatives']
}
}
},
copy: {
overwritekeysharedfiles: {
files: overwritekeysharedfiles()
},
npmoverwritebtn: {files:npmoverwritebtn()}
},
open : {
file : {
path : '/views/css.handlebars'
}
}
});
function openFile(){
var openString = ''
var fileName = grunt.option('filename'); //get value of target, my_module
openString = {
command: [
'cd..','cd..','cd..','cd '+process.env.ROOTFOLDER,
'sublime_text.exe "'+fileName+'"',
].join('&&')
}
return openString
}
//grunt editfile --filename='/.env'
grunt.registerTask('editfile',[
'shell:openfile'
]);
function overwritekeysharedfiles(){
var localFolderNames = ['c:/fraternate','c:/battlefront']
var fileList = [
'/testingfile.js',
'/index.js',
'/Gruntfile.js',
'/public/custom.css',
'/models/user.js',
'/views/404.handlebars',
'/views/500.handlebars',
'/views/partials/css.handlebars',
'/views/partials/javascript.handlebars',
'/views/partials/topofpage.handlebars',
'/views/partials/analytics.handlebars',
'/views/partials/custom.handlebars'
]
var copyFiles = []
for (var i = 0; i < localFolderNames.length; i++) {
for (var j = 0; j < fileList.length; j++) {
copyFiles.push(
{
src:"c:/shiftbulk"+fileList[j],
dest:localFolderNames[i]+fileList[j]
}
)
}
}
return copyFiles;
}
function npmoverwritebtn(){
var localFolderNames = ['c:/fraternate','c:/battlefront']
var copyFiles = []
var folderlist = [
'tests/',
'node_modules/fraternate/',
'node_modules/heavylifting/',
'node_modules/cleaner-wrasse/',
'node_modules/semini/',
'public/css/'
//'node_modules/' //use this , it just takes a while
]
for (var i = 0; i < localFolderNames.length; i++) {
for (var j = 0; j < folderlist.length; j++) {
copyFiles.push(
{
src:""+folderlist[j]+"**",
dest:localFolderNames[i] ,
expand :true,
nonull: true
}
)
}
}
var fileList = [
'/testingfile.js',
'/index.js',
'/models/user.js',
'/Gruntfile.js',
'/package.json',
'/package-lock.json',
'/public/custom.css',
'/views/404.handlebars',
'/views/500.handlebars',
'/views/partials/css.handlebars',
'/views/partials/javascript.handlebars',
'/views/partials/topofpage.handlebars',
'/views/partials/analytics.handlebars',
'/views/partials/custom.handlebars',
'/views/partials/navigation.handlebars'
]
for (var i = 0; i < localFolderNames.length; i++) {
for (var j = 0; j < fileList.length; j++) {
copyFiles.push(
{
src:"c:/shiftbulk"+fileList[j],
dest:localFolderNames[i]+fileList[j]
}
)
}
}
return copyFiles;
}
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-spell');
grunt.loadNpmTasks('grunt-nodemon');
grunt.loadNpmTasks('grunt-zip-directories');
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-run');
grunt.loadNpmTasks('grunt-open');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-bump');
grunt.loadNpmTasks('grunt-bg-shell');
//////////////////////////////////////
//// TASK REGISTRATION AREA /////
//////////////////////////////////////
//Migration to the seminin interface
//////////////////////////////////////////////
grunt.registerTask('seminibump',[
'shell:seminibump'
]);
grunt.registerTask('fraternatebump',[
'shell:fraternatebump'
]);
grunt.registerTask('heavyliftingbump',[
'shell:heavyliftingbump'
]);
grunt.registerTask('cleanerwrassebump',[
'shell:cleanerwrassebump'
]);
grunt.registerTask('bumpall',[
'concurrent:bumpAll'
]);
//DANGER AREA
grunt.registerTask('savelatestsemini',[
'shell:savelatestsemini'
]);
grunt.registerTask('savelatestfraternate',[
'shell:savelatestfraternate'
]);
grunt.registerTask('savelatestcleanerwrasse',[
'shell:savelatestcleanerwrasse'
]);
grunt.registerTask('savelatestheavylifting',[
'shell:savelatestheavylifting'
]);
grunt.registerTask('npmupdate',[
'shell:npmupdate'
]);
//overwrite the key files that govern the interal file from shiftbulk to other.
grunt.registerTask('overwritekeysharedfiles',[
'copy:overwritekeysharedfiles'
]);
//overwrite the 4 key npm modules on the desktop for testing.
grunt.registerTask('npmoverwritebtn',[
'copy:npmoverwritebtn'
]);
//////////////////////////////////////////////
//Notes : these are used to backup from the server. the first is stepped , the second included the first. The first is for precautions.
//grunt mongodbdump //Used for dumping the current local database to /localhostdb , and saving as a zip in the dbbackup.
grunt.registerTask('mongodbdump',[
'concurrent:mongodbdumpandzip'
]);
//grunt mongodbpullfromserver //Used for dumping the current local database to /localhostdb , and saving as a zip in the dbbackup.
//// DANGER WILL ROBINSON DANGER /////
grunt.registerTask('mongodbpullfromserver',[
'concurrent:mongodbpullfromserver'
]);
//grunt runserveranddotests //start the nodemon server and perform tests.
grunt.registerTask('runserveranddotests',[
'concurrent:starttests'
]);
//grunt sitemap // update site map and run testing.
grunt.registerTask('sitemap',[
'concurrent:sitemapcreate'
]);
};
//Notes : The registered helpers to follow are used to update the current webplatform to the latest working copy.
//1. Prompt which file to update : Fraternate ; Shiftbulk ; Battlefront.
//2. Notify the user the the current directory files will be migrated to the that selected folder.
//Note : do not copy .env or heavylifting.json.
//3. Prompt to install NPM update.
//4. run npx depcheck to check for unused dependancies.
//5. Install the NPM update .
//6. Copy accross
//6a. Site map
//6b. Tests
//6c. Grunt
//7. Nodemon the server.
//8. Run the tests.
//9. Need to set up the readme for NPM and github , using semini.
//10. Issue with the sitemap and robots.txt not being picked up.
//11. Remove unused JavaScript
//12. Reduce server response times (TTFB)
//13. warning Minify CSS
/*
module.exports = function(grunt) {
grunt.initConfig({
nodemon: {
dev: {
script: 'index.js'
}
},
run: {
startServ: {
options: {
wait: false
},
//cmd: "executable",
args: [
'/index.js'
]
},runTests: {
options: {
wait: false
},
exec: 'npm run test:watch' // <-- use the exec key.
},sitemap: {
options: {
wait: false
},
exec: 'node ./public/admin_localhostcrawler.js' //This will generate a site map using the local host.
}
},
open: {
startServ: {
path: localhost,
app: 'Google Chrome'
}
},
concurrent: {
options: {
logConcurrentOutput: true
},
//target1: ['nodemon'],
//target2: ['run:runTests', 'wait:runTests']
target: [ 'nodemon','open:startServ',['run:runTests', 'wait:runTests'],['run:sitemap', 'wait:sitemap']]
}
});
grunt.loadNpmTasks('grunt-nodemon');
grunt.loadNpmTasks('grunt-run');
grunt.loadNpmTasks('grunt-open');
grunt.loadNpmTasks('grunt-concurrent');
grunt.registerTask('default',[
'concurrent:target'
]);
};*/