mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
41 lines
820 B
JavaScript
41 lines
820 B
JavaScript
const { build, context } = require('esbuild');
|
|
|
|
async function bundle(format) {
|
|
const ext = format === 'esm' ? '.mjs' : '.js';
|
|
const outfile = `dist/index.${format}${ext}`;
|
|
const finish = () => console.log('Build finished:', outfile);
|
|
|
|
const options = {
|
|
format,
|
|
bundle: true,
|
|
target: ['chrome53'],
|
|
outfile,
|
|
// preserve Chinese character
|
|
charset: 'utf8',
|
|
external: ['vue', 'vant'],
|
|
entryPoints: ['./src/index.ts'],
|
|
};
|
|
|
|
if (process.argv.includes('-w')) {
|
|
const loggerPlugin = {
|
|
name: 'loggerPlugin',
|
|
setup(build) {
|
|
build.onEnd(finish);
|
|
},
|
|
};
|
|
|
|
const ctx = await context({
|
|
...options,
|
|
plugins: [loggerPlugin],
|
|
});
|
|
|
|
await ctx.watch();
|
|
} else {
|
|
await build(options);
|
|
finish();
|
|
}
|
|
}
|
|
|
|
bundle('esm');
|
|
bundle('cjs');
|