forked from ct-js/ct-js-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
415 lines (373 loc) · 12.8 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
'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'),
jsdocx = require('jsdoc-x'),
streamQueue = require('streamqueue'),
notifier = require('node-notifier'),
fs = require('fs-extra'),
spawnise = require('./node_requires/spawnise');
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 = () => {
spawnise.spawn(npm, ['run', 'start'], {
cwd: './app'
}).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 builder = require('electron-builder');
await fs.remove(path.join('./build', `ctjs - v${pack.version}`));
await builder.build({// @see https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/src/packagerApi.ts
projectDir: './app',
//mac: pack.build.mac.target || ['default'],
//win: pack.build.win.target,
//linux: pack.build.linux.target
});
};
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,
build,
docs,
patronsCache,
examples,
bakePackages
]);
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;