mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
const glob = require('fast-glob');
|
|
const { join } = require('path');
|
|
const { transformAsync } = require('@babel/core');
|
|
const { readFileSync, outputFileSync } = require('fs-extra');
|
|
|
|
const srcDir = join(__dirname, '..', 'src');
|
|
const distDir = join(__dirname, '..', 'dist');
|
|
const srcFiles = glob.sync(join(srcDir, '**', '*.ts'), {
|
|
ignore: ['**/node_modules', '**/*.spec.ts'],
|
|
});
|
|
|
|
const compile = (filePath, distDir) =>
|
|
new Promise((resolve, reject) => {
|
|
const code = readFileSync(filePath, 'utf-8');
|
|
const distPath = filePath.replace(srcDir, distDir).replace('.ts', '.js');
|
|
|
|
transformAsync(code, { filename: filePath })
|
|
.then((result) => {
|
|
if (result) {
|
|
outputFileSync(distPath, result.code);
|
|
resolve();
|
|
}
|
|
})
|
|
.catch(reject);
|
|
});
|
|
|
|
async function build() {
|
|
// esm output
|
|
await Promise.all(
|
|
srcFiles.map((srcFile) => compile(srcFile, join(distDir, 'esm')))
|
|
);
|
|
|
|
// cjs output
|
|
process.env.BABEL_MODULE = 'commonjs';
|
|
await Promise.all(
|
|
srcFiles.map((srcFile) => compile(srcFile, join(distDir, 'cjs')))
|
|
);
|
|
}
|
|
|
|
build();
|