-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathgulpfile.js
525 lines (473 loc) · 16.9 KB
/
gulpfile.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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
'use strict';
/* eslint no-console: 0 */
const path = require('path'),
gulp = require('gulp'),
concat = require('gulp-concat'),
replace = require('gulp-replace'),
sourcemaps = require('gulp-sourcemaps'),
minimist = require('minimist'),
stylus = require('gulp-stylus'),
riot = require('gulp-riot'),
pug = require('gulp-pug'),
sprite = require('gulp-svgstore'),
globby = require('globby'),
filemode = require('filemode'),
zip = require('gulp-zip'),
jsdocx = require('jsdoc-x'),
streamQueue = require('streamqueue'),
notifier = require('node-notifier'),
fs = require('fs-extra'),
spawnise = require('./node_requires/spawnise');
const nwVersion = '0.34.5',
platforms = ['osx64', 'win32', 'win64', 'linux32', 'linux64'],
nwFiles = ['./app/**', '!./app/export/**', '!./app/projects/**', '!./app/exportDesktop/**', '!./app/cache/**', '!./app/.vscode/**', '!./app/JamGames/**'];
const argv = minimist(process.argv.slice(2));
const npm = (/^win/).test(process.platform) ? 'npm.cmd' : 'npm';
const pack = require('./app/package.json');
var channelPostfix = argv.channel || false;
let errorBoxShown = false;
const showErrorBox = function () {
if (!errorBoxShown) {
errorBoxShown = true;
console.error(`
╭──────────────────────────────────────────╮
│ ├──╮
│ Build failed! D: │ │
│ │ │
│ If you have recently pulled changes │ │
│ or have just cloned the repo, run this │ │
│ command in your console: │ │
│ │ │
│ $ gulp -f devSetup.gulpfile.js │ │
│ │ │
╰─┬────────────────────────────────────────╯ │
╰───────────────────────────────────────────╯
`);
}
};
const makeErrorObj = (title, err) => {
showErrorBox();
return {
title,
message: err.toString(),
icon: path.join(__dirname, 'error.png'),
sound: true,
wait: true
};
};
const fileChangeNotifier = p => {
notifier.notify({
title: `Updating ${path.basename(p)}`,
message: `${p}`,
icon: path.join(__dirname, 'cat.png'),
sound: false,
wait: false
});
};
const compileStylus = () =>
gulp.src('./src/styl/theme*.styl')
.pipe(sourcemaps.init())
.pipe(stylus({
compress: true,
'include css': true
}))
.pipe(sourcemaps.write())
.pipe(gulp.dest('./app/data/'));
const compilePug = () =>
gulp.src('./src/pug/*.pug')
.pipe(sourcemaps.init())
.pipe(pug({
pretty: false
}))
.on('error', err => {
notifier.notify(makeErrorObj('Pug failure', err));
console.error('[pug error]', err);
})
.pipe(sourcemaps.write())
.pipe(gulp.dest('./app/'));
const compileRiot = () =>
gulp.src('./src/riotTags/**')
.pipe(riot({
compact: false,
template: 'pug'
}))
.pipe(concat('riot.js'))
.pipe(gulp.dest('./temp/'));
const concatScripts = () =>
streamQueue({objectMode: true},
gulp.src('./src/js/3rdparty/riot.min.js'),
gulp.src(['./src/js/**', '!./src/js/3rdparty/riot.min.js']),
gulp.src('./temp/riot.js')
)
.pipe(sourcemaps.init())
.pipe(concat('bundle.js'))
.pipe(sourcemaps.write())
.pipe(gulp.dest('./app/data/'))
.on('error', err => {
notifier.notify({
title: 'Scripts error',
message: err.toString(),
icon: path.join(__dirname, 'error.png'),
sound: true,
wait: true
});
console.error('[scripts error]', err);
})
.on('change', fileChangeNotifier);
const copyRequires = () =>
gulp.src('./src/node_requires/**/*')
.pipe(gulp.dest('./app/data/node_requires'));
const compileScripts = gulp.series(compileRiot, concatScripts);
const icons = () =>
gulp.src('./src/icons/**/*.svg')
.pipe(sprite())
.pipe(gulp.dest('./app/data'));
const watchScripts = () => {
gulp.watch('./src/js/**/*', gulp.series(compileScripts))
.on('error', err => {
notifier.notify(makeErrorObj('General scripts error', err));
console.error('[scripts error]', err);
})
.on('change', fileChangeNotifier);
};
const watchRiot = () => {
gulp.watch('./src/riotTags/**/*', gulp.series(compileScripts))
.on('error', err => {
notifier.notify(makeErrorObj('Riot failure', err));
console.error('[pug error]', err);
})
.on('change', fileChangeNotifier);
};
const watchStylus = () => {
gulp.watch('./src/styl/**/*', compileStylus)
.on('error', err => {
notifier.notify(makeErrorObj('Stylus failure', err));
console.error('[styl error]', err);
})
.on('change', fileChangeNotifier);
};
const watchPug = () => {
gulp.watch('./src/pug/*.pug', compilePug)
.on('change', fileChangeNotifier)
.on('error', err => {
notifier.notify(makeErrorObj('Pug failure', err));
console.error('[pug error]', err);
});
};
const watchRequires = () => {
gulp.watch('./src/node_requires/**/*', copyRequires)
.on('change', fileChangeNotifier)
.on('error', err => {
notifier.notify(makeErrorObj('Failure of node_requires', err));
console.error('[node_requires error]', err);
});
};
const watchIcons = () => {
gulp.watch('./src/icons/**/*.svg', icons);
};
const watch = () => {
watchScripts();
watchStylus();
watchPug();
watchRiot();
watchRequires();
watchIcons();
};
const lintStylus = () => {
const stylint = require('gulp-stylint');
return gulp.src(['./src/styl/**/*.styl', '!./src/styl/3rdParty/**/*.styl'])
.pipe(stylint())
.pipe(stylint.reporter())
.pipe(stylint.reporter('fail', {
failOnWarning: true
}));
};
const lintJS = () => {
const eslint = require('gulp-eslint');
return gulp.src(['./src/js/**/*.js', '!./src/js/3rdparty/**/*.js', './src/node_requires/**/*.js'])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
};
const lintI18n = () => require('./node_requires/i18n')().then(console.log);
const lint = gulp.series(lintJS, lintStylus, lintI18n);
const launchApp = () => {
const NwBuilder = require('nw-builder');
const nw = new NwBuilder({
files: nwFiles,
version: nwVersion,
platforms,
flavor: 'sdk'
});
return nw.run()
.catch(function (error) {
showErrorBox();
console.error(error);
})
.then(launchApp);
};
const docs = async () => {
try {
await fs.remove('./app/data/docs/');
await spawnise.spawn(npm, ['run', 'build'], {
cwd: './docs'
});
await fs.copy('./docs/docs/.vuepress/dist', './app/data/docs/');
} catch (e) {
showErrorBox();
throw e;
}
};
// @see https://microsoft.github.io/monaco-editor/api/enums/monaco.languages.completionitemkind.html
const kindMap = {
function: 'Function',
class: 'Class'
};
const getAutocompletion = doc => {
if (doc.kind === 'function') {
if (!doc.params || doc.params.length === 0) {
return doc.longname + '()';
}
return doc.longname + `(${doc.params.map(param => param.name).join(', ')})`;
}
if (doc.kind === 'class') {
return doc.name;
}
return doc.longname;
};
const getDocumentation = doc => {
if (!doc.description) {
return void 0;
}
if (doc.kind === 'function') {
return {
value: `${doc.description}
${(doc.params || []).map(param => `* \`${param.name}\` (${param.type.names.join('|')}) ${param.description} ${param.optional? '(optional)' : ''}`).join('\n')}
Returns ${doc.returns[0].type.names.join('|')}, ${doc.returns[0].description}`
};
}
return {
value: doc.description
};
};
const bakeCompletions = () =>
jsdocx.parse({
files: './app/data/ct.release/**/*.js',
excludePattern: '(DragonBones|pixi)',
undocumented: false,
allowUnknownTags: true
})
.then(docs => {
const registry = [];
for (const doc of docs) {
console.log(doc);
if (doc.params) {
for (const param of doc.params) {
console.log(param);
}
}
const item = {
label: doc.name,
insertText: doc.autocomplete || getAutocompletion(doc),
documentation: getDocumentation(doc),
kind: kindMap[doc.kind] || 'Property'
};
registry.push(item);
}
fs.outputJSON('./app/data/node_requires/codeEditor/autocompletions.json', registry, {
spaces: 2
});
});
const bakeCtTypedefs = cb => {
spawnise.spawn(npm, ['run', 'ctTypedefs'])
.then(cb);
};
const concatTypedefs = () =>
gulp.src(['./src/typedefs/ct.js/types.d.ts', './src/typedefs/ct.js/**/*.ts', './src/typedefs/default/**/*.ts'])
.pipe(concat('global.d.ts'))
// patch the generated output so ct classes allow custom properties
.pipe(replace(
'declare class Copy extends PIXI.AnimatedSprite {', `
declare class Copy extends PIXI.AnimatedSprite {
[key: string]: any
`))
.pipe(replace(
'declare class Room extends PIXI.Container {', `
declare class Room extends PIXI.Container {
[key: string]: any
`))
// also, remove JSDOC's @namespace flags so the popups in ct.js become more clear
.pipe(replace(`
* @namespace
*/
declare namespace`, `
*/
declare namespace`))
.pipe(replace(`
* @namespace
*/
namespace`, `
*/
namespace`))
.pipe(gulp.dest('./app/data/typedefs/'));
// electron-builder ignores .d.ts files no matter how you describe your app's contents.
const copyPixiTypedefs = () => gulp.src('./app/node_modules/pixi.js/pixi.js.d.ts')
.pipe(gulp.dest('./app/data/typedefs'));
const bakeTypedefs = gulp.series([bakeCtTypedefs, concatTypedefs, copyPixiTypedefs]);
const build = gulp.parallel([
compilePug,
compileStylus,
compileScripts,
copyRequires,
icons,
bakeTypedefs
]);
const bakePackages = async () => {
const NwBuilder = require('nw-builder');
await fs.remove(path.join('./build', `ctjs - v${pack.version}`));
var nw = new NwBuilder({
files: nwFiles,
platforms,
version: nwVersion,
flavor: 'sdk',
buildType: 'versioned',
// forceDownload: true,
zip: false,
macIcns: './buildAssets/icon.icns'
});
await nw.build();
console.log('Built to this location:', path.join('./build', `ctjs - v${pack.version}`));
};
// a workaround for https://github.com/nwjs-community/nw-builder/issues/289
const fixPermissions = () => {
if (platforms.indexOf('osx64') === -1) {
return Promise.resolve(); // skip the fix if not building for macos
}
const baseDir = path.posix.join('./build', `ctjs - v${pack.version}`, 'osx64', 'ctjs.app/Contents');
const globs = [
baseDir + '/MacOS/nwjs',
baseDir + '/Versions/*/nwjs Framework.framework/Versions/A/nwjs Framework',
baseDir + '/Versions/*/nwjs Helper.app/Contents/MacOS/nwjs Helper'
];
return globby(globs)
.then(files => {
console.log('overriding permissions for', files);
return Promise.all(files.map(file => filemode(file, '777')));
});
};
const oldSymlink = fs.symlink;
fs.symlink = (target, destination) => {
console.log('link', target, '<==', destination);
return oldSymlink(target, destination);
};
const abortOnWindows = done => {
if ((/^win/).test(process.platform) && platforms.indexOf('osx64') !== -1) {
throw new Error('Sorry, but building ct.js for mac is not possible on Windows due to Windows\' specifics. You can edit `platforms` at gulpfile.js if you don\'t need a package for mac.');
}
done();
};
// Based on solution at https://github.com/strawbees/desktop-packager/blob/master/commands/darwin/bundle.js
const fixSymlinks = async () => {
if (platforms.indexOf('osx64') === -1) {
return; // skip the fix if not building for macos
}
const baseDir = path.posix.join('./build', `ctjs - v${pack.version}`, 'osx64', 'ctjs.app/Contents');
// the actual directory depends on nw version, so let's find the needed dir with a glob
const glob = baseDir + '/Versions/*/nwjs Framework.framework/*';
const execute = require('./node_requires/execute');
const frameworkDir = path.dirname((await globby([glob]))[0]);
console.log('fixing symlinks at', frameworkDir);
execute(async ({exec}) => {
await exec(`
cd "${frameworkDir}"
rm "Versions/Current" && ln -s "./A" "./Versions/Current"
rm "Helpers" && ln -s "./Versions/Current/Helpers"
rm "Internet Plug-Ins" && ln -s "./Versions/Current/Internet Plug-Ins"
rm "Libraries" && ln -s "./Versions/Current/Libraries"
rm "nwjs Framework" && ln -s "./Versions/Current/nwjs Framework"
rm "Resources" && ln -s "./Versions/Current/Resources"
rm "XPCServices" && ln -s "./Versions/Current/XPCServices"
`);
});
};
exports.fixPermissions = fixPermissions;
exports.fixSymlinks = fixSymlinks;
let zipPackages;
if ((/^win/).test(process.platform)) {
const zipsForAllPlatforms = platforms.map(platform => () =>
gulp.src(`./build/ctjs - v${pack.version}/${platform}/**`)
.pipe(zip(`ct.js v${pack.version} for ${platform}.zip`))
.pipe(gulp.dest(`./build/ctjs - v${pack.version}/`))
);
zipPackages = gulp.parallel(zipsForAllPlatforms);
} else {
const execute = require('./node_requires/execute');
zipPackages = () => Promise.all(platforms.map(platform =>
// `r` for dirs,
// `q` for preventing spamming to stdout,
// and `y` for preserving symlinks
execute(({exec}) => exec(`
cd "./build/ctjs - v${pack.version}/"
zip -rqy "ct.js v${pack.version} for ${platform}.zip" "./${platform}"
`))
));
}
const examples = () => gulp.src('./src/examples/**/*')
.pipe(gulp.dest('./app/examples'));
// eslint-disable-next-line valid-jsdoc
/**
* @see https://stackoverflow.com/a/22907134
*/
const patronsCache = done => {
const http = require('https');
const dest = './app/data/patronsCache.csv',
src = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTUMd6nvY0if8MuVDm5-zMfAxWCSWpUzOc81SehmBVZ6mytFkoB3y9i9WlUufhIMteMDc00O9EqifI3/pub?output=csv';
const file = fs.createWriteStream(dest);
http.get(src, function(response) {
response.pipe(file);
file.on('finish', function() {
file.close(() => done()); // close() is async, call cb after close completes.
});
})
.on('error', function(err) { // Handle errors
fs.unlink(dest); // Delete the file async. (But we don't check the result)
done(err);
});
};
const packages = gulp.series([
lint,
abortOnWindows,
build,
docs,
patronsCache,
examples,
bakePackages,
fixSymlinks,
fixPermissions,
zipPackages
]);
const deployOnly = () => {
console.log(`For channel ${channelPostfix}`);
return spawnise.spawn('./butler', ['push', `./build/ctjs - v${pack.version}/linux32`, `comigo/ct:linux32${channelPostfix? '-' + channelPostfix: ''}`, '--userversion', pack.version])
.then(() => spawnise.spawn('./butler', ['push', `./build/ctjs - v${pack.version}/linux64`, `comigo/ct:linux64${channelPostfix? '-' + channelPostfix: ''}`, '--userversion', pack.version]))
.then(() => spawnise.spawn('./butler', ['push', `./build/ctjs - v${pack.version}/osx64`, `comigo/ct:osx64${channelPostfix? '-' + channelPostfix: ''}`, '--userversion', pack.version]))
.then(() => spawnise.spawn('./butler', ['push', `./build/ctjs - v${pack.version}/win32`, `comigo/ct:win32${channelPostfix? '-' + channelPostfix: ''}`, '--userversion', pack.version]))
.then(() => spawnise.spawn('./butler', ['push', `./build/ctjs - v${pack.version}/win64`, `comigo/ct:win64${channelPostfix? '-' + channelPostfix: ''}`, '--userversion', pack.version]));
};
const deploy = gulp.series([packages, deployOnly]);
const launchDevMode = done => {
watch();
launchApp();
done();
};
const defaultTask = gulp.series(build, launchDevMode);
exports.lint = lint;
exports.packages = packages;
exports.patronsCache = patronsCache;
exports.docs = docs;
exports.build = build;
exports.deploy = deploy;
exports.deployOnly = deployOnly;
exports.default = defaultTask;
exports.bakeCompletions = bakeCompletions;
exports.bakeTypedefs = bakeTypedefs;