shoelace/scripts/build.js

140 wiersze
3.9 KiB
JavaScript
Czysty Zwykły widok Historia

2021-02-26 14:09:13 +00:00
//
// Builds the project. To spin up a dev server, pass the --serve flag.
//
2021-06-17 21:38:48 +00:00
import browserSync from 'browser-sync';
import chalk from 'chalk';
import commandLineArgs from 'command-line-args';
import copy from 'recursive-copy';
import del from 'del';
import esbuild from 'esbuild';
import { execSync } from 'child_process';
import getPort from 'get-port';
import glob from 'globby';
import inlineImportPlugin from 'esbuild-plugin-inline-import';
import path from 'path';
import sass from 'sass';
import sassPlugin from 'esbuild-plugin-sass';
2021-02-26 14:09:13 +00:00
2021-06-17 21:38:48 +00:00
const build = esbuild.build;
const bs = browserSync.create();
2021-03-07 14:02:57 +00:00
const { dev } = commandLineArgs({ name: 'dev', type: Boolean });
2021-02-26 14:09:13 +00:00
2021-05-11 12:35:31 +00:00
del.sync('./dist');
2021-03-07 14:02:57 +00:00
if (!dev) execSync('tsc', { stdio: 'inherit' }); // for type declarations
2021-06-17 21:38:48 +00:00
execSync('node scripts/make-metadata.js', { stdio: 'inherit' });
execSync('node scripts/make-icons.js', { stdio: 'inherit' });
2021-02-26 14:09:13 +00:00
(async () => {
const entryPoints = [
2021-03-18 13:04:23 +00:00
// The whole shebang dist
2021-02-26 14:09:13 +00:00
'./src/shoelace.ts',
// Components
2021-05-27 20:50:58 +00:00
...(await glob('./src/components/**/!(*.test).ts')),
2021-02-26 14:09:13 +00:00
// Public utilities
2021-05-27 20:50:58 +00:00
...(await glob('./src/utilities/**/!(*.test).ts')),
2021-02-26 14:09:13 +00:00
// Theme stylesheets
2021-05-27 20:50:58 +00:00
...(await glob('./src/themes/**/!(*.test).ts'))
2021-02-26 14:09:13 +00:00
];
const buildResult = await esbuild
.build({
format: 'esm',
target: 'es2017',
entryPoints,
outdir: './dist',
2021-03-02 22:23:49 +00:00
chunkNames: 'chunks/[name].[hash]',
2021-03-07 14:02:57 +00:00
incremental: dev,
2021-02-26 14:09:13 +00:00
define: {
// Popper.js expects this to be set
'process.env.NODE_ENV': '"production"'
},
bundle: true,
splitting: true,
plugins: [
// Run inline style imports through Sass
inlineImportPlugin({
filter: /^sass:/,
transform: async (contents, args) => {
return await new Promise((resolve, reject) => {
sass.render(
{
data: contents,
includePaths: [path.dirname(args.path)]
},
(err, result) => {
if (err) {
reject(err);
return;
}
resolve(result.css.toString());
}
);
});
}
}),
// Run all other stylesheets through Sass
sassPlugin()
]
})
.catch(err => {
console.error(chalk.red(err));
process.exit(1);
});
// Create the docs distribution by copying dist into docs/dist. This is what powers the website. It can't exist in dev
// because it will conflict with browser sync's routing to the actual dist dir.
await del('./docs/dist');
2021-03-07 14:02:57 +00:00
if (!dev) {
2021-02-26 14:09:13 +00:00
await copy('./dist', './docs/dist');
}
console.log(chalk.green('The build has finished! 📦'));
2021-02-26 14:09:13 +00:00
2021-03-07 14:02:57 +00:00
if (dev) {
2021-02-26 14:09:13 +00:00
const port = await getPort({
port: getPort.makeRange(4000, 4999)
});
console.log(chalk.cyan(`\nLaunching the Shoelace dev server at http://localhost:${port}! 🥾\n`));
// Launch browser sync
bs.init({
startPath: '/',
port,
logLevel: 'silent',
logPrefix: '[shoelace]',
logFileChanges: true,
notify: false,
server: {
baseDir: 'docs',
routes: {
'/dist': './dist'
}
}
});
// Rebuild and reload when source files change
2021-05-27 20:50:58 +00:00
bs.watch(['src/**/!(*.test).*']).on('change', async filename => {
2021-02-26 14:09:13 +00:00
console.log(`Source file changed - ${filename}`);
// NOTE: we don't run TypeDoc on every change because it's quite heavy, so changes to the docs won't be included
// until the next time the build script runs.
buildResult
.rebuild()
.then(() => bs.reload())
.catch(err => console.error(chalk.red(err)));
});
// Reload without rebuilding when the docs change
bs.watch(['docs/**/*']).on('change', filename => {
console.log(`Docs file changed - ${filename}`);
bs.reload();
});
// Cleanup on exit
process.on('SIGTERM', () => buildResult.rebuild.dispose());
}
})();