-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
build.js
437 lines (375 loc) · 12.6 KB
/
build.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
#!/usr/bin/env node
/***********************************************************************************************************************
build.js (v1.9.3, 2024-05-14)
A Node.js-hosted build script for SugarCube.
Copyright © 2013–2024 Thomas Michael Edwards <[email protected]>. All rights reserved.
Use of this source code is governed by a BSD 2-clause "Simplified" License, which may be found in the LICENSE file.
***********************************************************************************************************************/
/* eslint-env node, es2021 */
/* eslint-disable strict */
'use strict';
/*******************************************************************************
Configuration
*******************************************************************************/
const CONFIG = {
js : {
files : [
// The ordering herein is significant.
'src/lib/alert.js',
'src/lib/patterns.js',
'src/extensions/ecmascript-polyfills.js',
'src/extensions/ecmascript-extensions.js',
'src/extensions/jquery/',
'src/lib/browser.js',
'src/lib/has.js',
'src/lib/fullscreen.js',
'src/lib/outliner.js',
'src/lib/serial.js',
'src/lib/visibility.js',
'src/util/',
'src/storage/simplestore.js',
'src/storage/adapters/webstorage.js',
'src/storage/adapters/cookie.js',
'src/lib/debugview.js',
'src/lib/nodetyper.js',
'src/lib/stylewrapper.js',
'src/lib/diff.js',
'src/l10n/l10n.js',
'src/l10n/strings.js',
'src/config.js',
'src/audio/simpleaudio.js',
'src/state.js',
'src/markup/scripting.js',
'src/markup/lexer.js',
'src/markup/wikifier.js',
'src/markup/parserlib.js',
'src/markup/template.js',
'src/macro/macro.js',
'src/macro/macrocontext.js',
'src/macro/macros/',
'src/macro/deprecated-macros.js',
'src/dialog.js',
'src/engine.js',
'src/passage.js',
'src/save.js',
'src/setting.js',
'src/story.js',
'src/ui.js',
'src/uibar.js',
'src/debugbar.js',
'src/loadscreen.js',
'src/lib/deprecated-util.js',
'src/sugarcube.js'
],
wrap : {
intro : 'template/intro.js',
outro : 'template/outro.js'
}
},
css : {
mixins : 'src/css/_mixins.css',
files : [
// The ordering herein is significant.
'vendor/normalize.css',
'src/css/init-screen.css',
'src/css/font-icons.css',
'src/css/font-emoji.css',
'src/css/core.css',
'src/css/core-display.css',
'src/css/core-passage.css',
'src/css/core-macro.css',
'src/css/ui-dialog.css',
'src/css/ui-dialog-saves.css',
'src/css/ui-dialog-settings.css',
'src/css/ui-dialog-legacy.css',
'src/css/ui-bar.css',
'src/css/ui-debug-bar.css',
'src/css/ui-debug-views.css'
]
},
libs : [
// The ordering herein is significant.
'vendor/classList.min.js',
'vendor/es5-shim.min.js',
'vendor/es6-shim.min.js',
'vendor/jquery.min.js',
'vendor/jquery.ba-throttle-debounce.min.js',
'vendor/imagesloaded.pkgd.min.js',
'vendor/lz-string.min.js',
'vendor/FileSaver.min.js',
'vendor/seedrandom.min.js',
'vendor/console-hack.min.js'
],
twine1 : {
build : {
src : 'template/twine1/html.tpl',
dest : 'build/twine1/sugarcube-2/header.html'
},
copy : [
{
src : 'template/twine1/sugarcube-2.py',
dest : 'build/twine1/sugarcube-2/sugarcube-2.py'
},
{
src : 'LICENSE',
dest : 'build/twine1/sugarcube-2/LICENSE'
}
]
},
twine2 : {
build : {
src : 'template/twine2/html.tpl',
dest : 'build/twine2/sugarcube-2/format.js',
json : 'template/twine2/config.json'
},
copy : [
{
src : 'icon.svg',
dest : 'build/twine2/sugarcube-2/icon.svg'
},
{
src : 'LICENSE',
dest : 'build/twine2/sugarcube-2/LICENSE'
}
]
}
};
/*******************************************************************************
Main Script
*******************************************************************************/
// NOTICE!
//
// Where string replacements are done, we use the replacement function style to
// disable all special replacement patterns, since some of them may exist within
// the replacement strings—e.g., `$&` within the HTML or JavaScript sources.
const {
log,
die,
fileExists,
walkPaths,
makePath,
copyFile,
readFileContents,
writeFileContents,
concatFiles
} = require('./scripts/build-utils');
const _path = require('path');
const _opts = require('commander')
.program
.option('-b, --build <version>', 'Build only for Twine major version: 1 or 2; default: build for all.')
.option('-d, --debug', 'Keep debugging code; gated by BUILD_DEBUG symbol.')
.option('-u, --unminified', 'Suppress minification stages.')
.option('-n, --notranspile', 'Suppress JavaScript transpilation stages.')
.helpOption('-h, --help', 'Print this help, then exit.')
.parse()
.opts();
let _buildForTwine1 = true;
let _buildForTwine2 = true;
if (_opts.build) {
switch (_opts.build) {
case '1':
_buildForTwine2 = false;
break;
case '2':
_buildForTwine1 = false;
break;
default:
die(`unknown Twine major version: ${_opts.build}; valid values: 1 or 2`);
break;
}
}
// Build the project.
(async () => {
console.log('Starting builds...');
// Create the build ID file, if nonexistent.
if (!fileExists('.build')) {
writeFileContents('.build', '0');
}
// Get the version info and build metadata.
const version = (() => {
const semver = require('semver');
const { name, version } = require('./package.json'); // relative path must be prefixed ('./')
const parsed = semver.parse(version);
const build = Number(readFileContents('.build'));
if (!Number.isInteger(build)) {
throw new Error(`invalid build metadata (received: ${build})`);
}
return {
name,
major : parsed.major,
minor : parsed.minor,
patch : parsed.patch,
prerelease : parsed.prerelease.join('.'),
build : build + 1,
date : new Date().toISOString(),
toString() {
const prerelease = this.prerelease ? `-${this.prerelease}` : '';
const build = this.prerelease ? `+${this.build}` : '';
return `${this.major}.${this.minor}.${this.patch}${prerelease}${build}`;
}
};
})();
// Build for Twine 1.x.
if (_buildForTwine1 && CONFIG.twine1) {
console.log('\nBuilding Twine 1.x version:');
// Process the header templates and write the outfiles.
projectBuild({
build : CONFIG.twine1.build,
version : version, // eslint-disable-line object-shorthand
libSource : assembleLibraries(CONFIG.libs), // combine the libraries
appSource : await compileJavaScript(CONFIG.js, { twine1 : true }), // combine and minify the app JS
cssSource : compileStyles(CONFIG.css) // combine and minify the app CSS
});
// Process the files that simply need copied into the build.
projectCopy(CONFIG.twine1.copy);
}
// Build for Twine 2.x.
if (_buildForTwine2 && CONFIG.twine2) {
console.log('\nBuilding Twine 2.x version:');
// Process the story format templates and write the outfiles.
projectBuild({
build : CONFIG.twine2.build,
version : version, // eslint-disable-line object-shorthand
libSource : assembleLibraries(CONFIG.libs), // combine the libraries
appSource : await compileJavaScript(CONFIG.js, { twine1 : false }), // combine and minify the app JS
cssSource : compileStyles(CONFIG.css), // combine and minify the app CSS
postProcess(sourceString) {
// Load the output format.
let output = require(`./${_path.normalize(this.build.json)}`); // relative path must be prefixed ('./')
// Merge data into the output format.
output = Object.assign(output, {
description : output.description.replace(
/(['"`])\{\{BUILD_VERSION_MAJOR\}\}\1/g,
() => this.version.major
),
version : this.version.toString(),
source : sourceString
});
// Wrap the output in the `storyFormat()` function.
output = `window.storyFormat(${JSON.stringify(output)});`;
return output;
}
});
// Process the files that simply need copied into the build.
projectCopy(CONFIG.twine2.copy);
}
// Update the build ID.
writeFileContents('.build', String(version.build));
})()
.then(() => console.log('\nBuilds complete! (check the "build" directory)'))
.catch(reason => console.log('\nERROR:', reason));
/*******************************************************************************
Utility Functions
*******************************************************************************/
function assembleLibraries(filenames) {
log('assembling libraries...');
return concatFiles(filenames, contents => contents.replace(/^\n+|\n+$/g, ''));
}
function compileJavaScript(config, options) {
log('compiling JavaScript...');
// Join the files.
let bundle = concatFiles(walkPaths(config.files));
// Transpile to ES5 with Babel.
if (!_opts.notranspile) {
const { transform } = require('@babel/core');
bundle = transform(bundle, {
// babelHelpers : 'bundled',
code : true,
compact : false,
presets : [['@babel/preset-env']],
filename : 'sugarcube.bundle.js'
}).code;
}
bundle = `${readFileContents(config.wrap.intro)}\n${bundle}\n${readFileContents(config.wrap.outro)}`;
return (async source => {
if (_opts.unminified) {
return [
`window.BUILD_TWINE1=${Boolean(options.twine1)}`,
`window.BUILD_DEBUG=${_opts.debug || false}`,
source
].join(';\n');
}
// Minify the code with Terser.
const { minify } = require('terser');
const minified = await minify(source, {
compress : {
global_defs : { // eslint-disable-line camelcase
BUILD_TWINE1 : !!options.twine1,
BUILD_DEBUG : _opts.debug || false
}
},
mangle : false
});
if (minified.error) {
const { message, line, col, pos } = minified.error;
die(`JavaScript minification error: ${message}\n[@: ${line}/${col}/${pos}]`);
}
return minified.code;
})(bundle);
}
function compileStyles(config) {
log('compiling CSS...');
const autoprefixer = require('autoprefixer');
const mixins = require('postcss-mixins');
const postcss = require('postcss');
const CleanCSS = require('clean-css');
const excludeRE = /(?:normalize)\.css$/;
const mixinContent = readFileContents(config.mixins);
return concatFiles(config.files, (contents, filename) => {
let css = contents;
// Do not run the postcss plugins on files that match the exclusion regexp.
if (!excludeRE.test(filename)) {
css = `${mixinContent}\n${css}`;
const processed = postcss([mixins, autoprefixer]).process(css, { from : filename });
css = processed.css;
processed.warnings().forEach(mesg => console.warn(mesg.text));
}
if (!_opts.unminified) {
css = new CleanCSS({
level : 1,
compatibility : 'ie9'
})
.minify(css)
.styles;
}
const fileSlug = _path.basename(filename, '.css').toLowerCase().replace(/[^0-9a-z]+/g, '-');
return `<style id="style-${fileSlug}" type="text/css">${css}</style>`;
});
}
function projectBuild(project) {
const infile = _path.normalize(project.build.src);
const outfile = _path.normalize(project.build.dest);
log(`building: "${outfile}"`);
// Load the story format template.
let output = readFileContents(infile);
// Process the source replacement tokens. (First!)
output = output.replace(/(['"`])\{\{BUILD_LIB_SOURCE\}\}\1/, () => project.libSource);
output = output.replace(/(['"`])\{\{BUILD_APP_SOURCE\}\}\1/, () => project.appSource);
output = output.replace(/(['"`])\{\{BUILD_CSS_SOURCE\}\}\1/, () => project.cssSource);
// Process the build replacement tokens.
const prerelease = JSON.stringify(project.version.prerelease);
const date = JSON.stringify(project.version.date);
output = output.replace(/(['"`])\{\{BUILD_VERSION_MAJOR\}\}\1/g, () => project.version.major);
output = output.replace(/(['"`])\{\{BUILD_VERSION_MINOR\}\}\1/g, () => project.version.minor);
output = output.replace(/(['"`])\{\{BUILD_VERSION_PATCH\}\}\1/g, () => project.version.patch);
output = output.replace(/(['"`])\{\{BUILD_VERSION_PRERELEASE\}\}\1/g, () => prerelease);
output = output.replace(/(['"`])\{\{BUILD_VERSION_BUILD\}\}\1/g, () => project.version.build);
output = output.replace(/(['"`])\{\{BUILD_VERSION_DATE\}\}\1/g, () => date);
output = output.replace(/(['"`])\{\{BUILD_VERSION_VERSION\}\}\1/g, () => project.version);
// Post-process hook.
if (typeof project.postProcess === 'function') {
output = project.postProcess(output);
}
// Write the outfile.
makePath(_path.dirname(outfile));
writeFileContents(outfile, output);
}
function projectCopy(fileObjs) {
fileObjs.forEach(file => {
const infile = _path.normalize(file.src);
const outfile = _path.normalize(file.dest);
log(`copying : "${outfile}"`);
makePath(_path.dirname(outfile));
copyFile(infile, outfile);
});
}