2024-01-24 18:24:40 +00:00
|
|
|
// IMPORTS
|
2023-07-17 14:37:39 +00:00
|
|
|
const fs = require('fs');
|
|
|
|
const swc = require('@swc/core');
|
|
|
|
const path = require('path');
|
|
|
|
const util = require('util');
|
|
|
|
const postcss = require('postcss');
|
|
|
|
const utils = require('./assets/utils.js');
|
|
|
|
const assproc = require('./assets/assproc.js');
|
|
|
|
|
|
|
|
|
2024-01-24 18:24:40 +00:00
|
|
|
// CONFIG
|
|
|
|
const rootDir = __dirname;
|
|
|
|
const srcDir = path.join(rootDir, 'assets');
|
|
|
|
const srcCurrentInfo = path.join(srcDir, 'current.json');
|
2023-07-17 14:37:39 +00:00
|
|
|
const pubDir = path.join(rootDir, 'public');
|
2024-01-24 18:24:40 +00:00
|
|
|
const pubAssetsDir = path.join(pubDir, 'assets');
|
2023-07-17 14:37:39 +00:00
|
|
|
|
|
|
|
const isDebugBuild = fs.existsSync(path.join(rootDir, '.debug'));
|
|
|
|
|
2024-01-24 18:24:40 +00:00
|
|
|
const buildTasks = {
|
|
|
|
js: [
|
|
|
|
{ source: 'misuzu.js', target: '/assets', name: 'misuzu.{hash}.js', },
|
|
|
|
],
|
|
|
|
css: [
|
|
|
|
{ source: 'misuzu.css', target: '/assets', name: 'misuzu.{hash}.css', },
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// PREP
|
|
|
|
const postcssPlugins = [ require('autoprefixer')({ remove: false }) ];
|
|
|
|
if(!isDebugBuild)
|
|
|
|
postcssPlugins.push(require('cssnano')({
|
|
|
|
preset: [
|
|
|
|
'cssnano-preset-default',
|
|
|
|
{
|
|
|
|
minifyGradients: false,
|
|
|
|
reduceIdents: false,
|
|
|
|
zindex: true,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}));
|
|
|
|
|
2023-07-17 14:37:39 +00:00
|
|
|
const swcJscOptions = {
|
2024-01-24 18:24:40 +00:00
|
|
|
target: 'es2021',
|
2023-07-17 14:37:39 +00:00
|
|
|
loose: false,
|
|
|
|
externalHelpers: false,
|
|
|
|
keepClassNames: true,
|
|
|
|
preserveAllComments: false,
|
|
|
|
transform: {},
|
|
|
|
parser: {
|
|
|
|
syntax: 'ecmascript',
|
|
|
|
jsx: true,
|
|
|
|
dynamicImport: false,
|
|
|
|
privateMethod: false,
|
|
|
|
functionBind: false,
|
|
|
|
exportDefaultFrom: false,
|
|
|
|
exportNamespaceFrom: false,
|
|
|
|
decorators: false,
|
|
|
|
decoratorsBeforeExport: false,
|
|
|
|
topLevelAwait: true,
|
|
|
|
importMeta: false,
|
|
|
|
},
|
|
|
|
transform: {
|
|
|
|
react: {
|
|
|
|
runtime: 'classic',
|
|
|
|
pragma: '$er',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2024-01-24 18:24:40 +00:00
|
|
|
// BUILD
|
2023-07-17 14:37:39 +00:00
|
|
|
(async () => {
|
2024-01-24 18:24:40 +00:00
|
|
|
const files = {};
|
|
|
|
|
|
|
|
console.log('Ensuring assets directory exists...');
|
|
|
|
fs.mkdirSync(pubAssetsDir, { recursive: true });
|
|
|
|
|
|
|
|
|
|
|
|
console.log();
|
|
|
|
console.log('JS assets');
|
|
|
|
for(const info of buildTasks.js) {
|
|
|
|
console.log(`=> Building ${info.source}...`);
|
|
|
|
|
|
|
|
let origTarget = undefined;
|
|
|
|
if('es' in info) {
|
|
|
|
origTarget = swcJscOptions.target;
|
|
|
|
swcJscOptions.target = info.es;
|
|
|
|
}
|
|
|
|
|
|
|
|
const assprocOpts = {
|
|
|
|
prefix: '#',
|
|
|
|
entry: info.entry || 'main.js',
|
|
|
|
};
|
|
|
|
const swcOpts = {
|
|
|
|
filename: info.source,
|
2023-07-17 14:37:39 +00:00
|
|
|
sourceMaps: false,
|
|
|
|
isModule: false,
|
|
|
|
minify: !isDebugBuild,
|
|
|
|
jsc: swcJscOptions,
|
2024-01-24 18:24:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const pubName = await assproc.process(path.join(srcDir, info.source), assprocOpts)
|
|
|
|
.then(output => swc.transform(output, swcOpts))
|
|
|
|
.then(output => {
|
|
|
|
const name = utils.strtr(info.name, { hash: utils.shortHash(output.code) });
|
|
|
|
const pubName = path.join(info.target || '', name);
|
|
|
|
|
|
|
|
console.log(` Saving to ${pubName}...`);
|
|
|
|
fs.writeFileSync(path.join(pubDir, pubName), output.code);
|
|
|
|
|
|
|
|
return pubName;
|
|
|
|
});
|
|
|
|
|
|
|
|
if(origTarget !== undefined)
|
|
|
|
swcJscOptions.target = origTarget;
|
|
|
|
|
|
|
|
files[info.source] = pubName;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
console.log();
|
|
|
|
console.log('CSS assets');
|
|
|
|
for(const info of buildTasks.css) {
|
|
|
|
console.log(`=> Building ${info.source}...`);
|
|
|
|
|
|
|
|
const sourcePath = path.join(srcDir, info.source);
|
|
|
|
const assprocOpts = {
|
|
|
|
prefix: '@',
|
|
|
|
entry: info.entry || 'main.css',
|
|
|
|
};
|
|
|
|
const postcssOpts = { from: sourcePath };
|
|
|
|
|
|
|
|
files[info.source] = await assproc.process(sourcePath, assprocOpts)
|
|
|
|
.then(output => postcss(postcssPlugins).process(output, postcssOpts)
|
|
|
|
.then(output => {
|
|
|
|
const name = utils.strtr(info.name, { hash: utils.shortHash(output.css) });
|
|
|
|
const pubName = path.join(info.target || '', name);
|
|
|
|
|
|
|
|
console.log(` Saving to ${pubName}...`);
|
|
|
|
fs.writeFileSync(path.join(pubDir, pubName), output.css);
|
|
|
|
|
|
|
|
return pubName;
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
console.log();
|
|
|
|
console.log('Writing assets info...');
|
|
|
|
fs.writeFileSync(srcCurrentInfo, JSON.stringify(files));
|
|
|
|
|
2023-07-17 14:37:39 +00:00
|
|
|
|
2024-01-24 18:24:40 +00:00
|
|
|
console.log();
|
|
|
|
console.log('Cleaning up old builds...');
|
|
|
|
assproc.housekeep(pubAssetsDir);
|
2023-07-17 14:37:39 +00:00
|
|
|
})();
|