forked from GameDistribution/GD-HTML5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
408 lines (379 loc) · 10.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
function atob(str) {
if (str) {
return new Buffer(str, "base64").toString("binary");
}
return null;
}
module.exports = function(grunt) {
const startTS = Date.now();
grunt.initConfig({
/**
* This will load in our package.json file so we can have access
* to the project name and appVersion number.
*/
pkg: grunt.file.readJSON("package.json"),
/**
* Use cmd to eslint.
*/
exec: {
eslint: {
cmd: "./node_modules/.bin/eslint --fix --ext .js, src"
}
},
/**
* Copies certain files over from the src folder to the build folder.
*/
copy: {
development: {
expand: true,
flatten: true,
cwd: "./",
src: ["index.html", "blocked.html"],
dest: "./lib/"
},
legacy: {
src: ["./lib/main.min.js"],
dest: "./lib/libs/gd/api.js"
}
},
/**
* Cleans our build folder.
*/
clean: {
lib: {
src: ["./lib"]
}
},
/**
* A code block that will be added to our minified code files.
* Gets the name and appVersion and other info from the above loaded 'package.json' file.
* @example <%= banner.join("\\n") %>
*/
banner: [
"/*",
"* Project: <%= pkg.name %>",
"* Description: <%= pkg.description %>",
"* Development By: <%= pkg.author %>",
'* Copyright(c): <%= grunt.template.today("yyyy") %>',
'* Version: <%= pkg.version %> (<%= grunt.template.today("dd-mm-yyyy HH:MM") %>)',
"*/"
],
/**
* Prepends the banner above to the minified files.
*/
usebanner: {
options: {
position: "top",
banner: '<%= banner.join("\\n") %>',
linebreak: true
},
files: {
src: ["lib/main.min.js"]
}
},
/**
* Browserify is used to support the latest version of javascript.
* We also concat it while we're at it.
* We only use Browserify for the mobile sites.
*/
browserify: {
options: {
transform: [
[
"babelify",
{
presets: [
[
"@babel/preset-env",
{
targets: {
browsers: ["> 1%"]
},
debug: false
}
]
]
}
]
]
},
lib: {
src: "src/**/*.js",
dest: "lib/main.js"
},
blocked: {
src: "blocked/blocked.js",
dest: "lib/blocked.js"
}
},
/**
* Do some javascript post processing, like minifying and removing comments.
*/
uglify: {
options: {
position: "top",
linebreak: true,
sourceMap: false,
sourceMapIncludeSources: false,
compress: {
sequences: true,
dead_code: true,
conditionals: true,
booleans: true,
unused: true,
if_return: true,
join_vars: true,
keep_fnames:true
},
mangle: {
reserved:['SDKDeprecated']
},
beautify: false,
warnings: false
},
lib: {
src: "lib/main.js",
dest: "lib/main.min.js"
},
blocked: {
src: "lib/blocked.js",
dest: "lib/blocked.min.js"
}
},
/**
* Setup a simple watcher.
*/
watch: {
options: {
spawn: false,
debounceDelay: 250
},
scripts: {
files: ["src/**/*.js"],
tasks: ["exec:eslint", "browserify", "uglify", "duration"]
},
html: {
files: ["index.html", "blocked.html"]
},
grunt: {
files: ["gruntfile.js"]
}
},
/**
* Start browser sync, which setups a local node server based on the server root location.
* This task helps with cross browser testing and general workflow.
*/
browserSync: {
bsFiles: {
src: ["lib/", "index.html", "blocked.html"]
},
options: {
server: "./",
watchTask: true,
port: 3000
}
}
});
// General tasks.
grunt.loadNpmTasks("grunt-exec");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-google-cloud");
grunt.loadNpmTasks("grunt-browser-sync");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-browserify");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-banner");
// Register all tasks.
grunt.registerTask(
"duration",
"Displays the duration of the grunt task up until this point.",
function() {
const date = new Date(Date.now() - startTS);
let hh = date.getUTCHours();
let mm = date.getUTCMinutes();
let ss = date.getSeconds();
if (hh < 10) {
hh = "0" + hh;
}
if (mm < 10) {
mm = "0" + mm;
}
if (ss < 10) {
ss = "0" + ss;
}
console.log("Duration: " + hh + ":" + mm + ":" + ss);
}
);
grunt.registerTask("sourcemaps", "Build with sourcemaps", function() {
grunt.config.set("uglify.options.sourceMap", true);
grunt.config.set("uglify.options.sourceMapIncludeSources", true);
});
grunt.registerTask(
"default",
"Start BrowserSync and watch for any changes so we can do live updates while developing.",
function() {
const tasksArray = [
"copy:development",
"exec:eslint",
"browserify",
"sourcemaps",
"uglify",
"usebanner",
"duration",
"browserSync",
"watch"
];
grunt.task.run(tasksArray);
}
);
grunt.registerTask("build", "Build and optimize the js.", function() {
const tasksArray = [
"clean",
"exec:eslint",
"browserify",
"uglify",
"usebanner",
"copy:legacy",
"duration"
];
grunt.task.run(tasksArray);
});
grunt.registerTask("buildsync", "Build and optimize the js.", function() {
const tasksArray = [
"clean",
"exec:eslint",
"browserify",
"uglify",
"usebanner",
"copy:legacy",
"watch"
];
grunt.task.run(tasksArray);
});
grunt.registerTask(
"blocked",
"Build and optimize the blocked js.",
function() {
const tasksArray = [
"exec:eslint",
"browserify:blocked",
"uglify:blocked",
"duration"
];
grunt.task.run(tasksArray);
}
);
grunt.registerTask("deploy", "Upload the build files.", function() {
const project = grunt.option("project"), // vooxe-gamedistribution
bucket = grunt.option("bucket"), // gd-sdk-html5
folderIn = grunt.option("in"), //
folderOut = grunt.option("out"); //
// The key is saved as a system parameter within Team City.
// The service account key of our google cloud account for uploading to
// storage is stringified and then encoded as base64 using btoa()
// console.log(grunt.option('key'));
let keyObj = grunt.option("key");
let key = JSON.parse(atob(keyObj));
// console.log(key);
if (project === undefined) {
grunt.fail.warn("Cannot upload without a project name");
}
if (bucket === undefined) {
grunt.fail.warn("OW DEAR GOD THEY ARE STEALING MAH BUCKET!");
}
if (key === undefined || key === null) {
grunt.fail.warn("Cannot upload without an auth key");
} else {
console.log("Key loaded...");
}
grunt.config.merge({
gcs: {
options: {
credentials: key,
project: project,
bucket: bucket,
gzip: true,
metadata: {
"surrogate-key": "gcs"
}
},
dist: {
cwd: "./lib/",
src: ["**/*"],
dest: ""
}
}
});
console.log("Project: " + project);
console.log("Bucket: " + bucket);
if (folderIn === undefined && folderOut === undefined) {
console.log("Deploying: ./lib/ to gs://" + bucket + "/");
} else {
if (folderIn !== undefined) {
if (folderOut === undefined) {
grunt.fail.warn('No use in specifying "in" without "out"');
}
console.log(
"Deploying: ../" + folderIn + " to gs://" + bucket + "/" + folderOut
);
grunt.config.set("gcs.dist", {
cwd: "../" + folderIn,
src: ["**/*"],
dest: folderOut
});
} else if (folderOut !== undefined) {
grunt.fail.warn('No use in specifying "out" without "in"');
}
}
grunt.task.run("gcs");
});
grunt.registerTask(
"archive",
"Upload the build files to version folders.",
function() {
const project = grunt.option("project"), // vooxe-gamedistribution
bucket = grunt.option("bucket"); // gd-sdk-html5
// The key is saved as a system parameter within Team City.
// The service account key of our google cloud account for uploading to
// storage is stringified and then encoded as base64 using btoa()
// console.log(grunt.option('key'));
let keyObj = grunt.option("key");
let key = JSON.parse(atob(keyObj));
// console.log(key);
if (project === undefined) {
grunt.fail.warn("Cannot upload without a project name");
}
if (bucket === undefined) {
grunt.fail.warn("OW DEAR GOD THEY ARE STEALING MAH BUCKET!");
}
if (key === undefined || key === null) {
grunt.fail.warn("Cannot upload without an auth key");
} else {
console.log("Key loaded...");
}
grunt.config.merge({
gcs: {
options: {
credentials: key,
project: project,
bucket: bucket,
gzip: true,
metadata: {
"surrogate-key": "gcs"
}
},
dist: {
cwd: "./lib/",
src: ["**/*"],
dest: "v/<%= pkg.version %>/"
}
}
});
console.log("Project: " + project);
console.log("Bucket: " + bucket);
console.log("Deploying: ./lib/ to gs://" + bucket + "/");
grunt.task.run("gcs");
}
);
};