mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
/**
|
|
* Compile components
|
|
*/
|
|
const fs = require('fs-extra');
|
|
const path = require('path');
|
|
const babel = require('@babel/core');
|
|
const compiler = require('vue-sfc-compiler');
|
|
|
|
const esDir = path.join(__dirname, '../es');
|
|
const libDir = path.join(__dirname, '../lib');
|
|
const srcDir = path.join(__dirname, '../packages');
|
|
const compilerOption = {
|
|
babel: {
|
|
configFile: path.join(__dirname, '../babel.config.js')
|
|
}
|
|
};
|
|
|
|
const whiteList = /(demo|vant-css|test|\.md)$/;
|
|
|
|
// clear dir
|
|
fs.emptyDirSync(esDir);
|
|
fs.emptyDirSync(libDir);
|
|
|
|
// copy packages
|
|
fs.copySync(srcDir, esDir);
|
|
|
|
compile(esDir);
|
|
|
|
function compile(dir, jsOnly = false) {
|
|
const files = fs.readdirSync(dir);
|
|
|
|
files.forEach(file => {
|
|
const absolutePath = path.join(dir, file);
|
|
|
|
// reomve unnecessary files
|
|
if (whiteList.test(file)) {
|
|
fs.removeSync(absolutePath);
|
|
// scan dir
|
|
} else if (isDir(absolutePath)) {
|
|
return compile(absolutePath);
|
|
// compile sfc
|
|
} else if (/\.vue$/.test(file) && !jsOnly) {
|
|
const source = fs.readFileSync(absolutePath, 'utf-8');
|
|
fs.removeSync(absolutePath);
|
|
|
|
const outputVuePath = absolutePath + '.js';
|
|
const outputJsPath = absolutePath.replace('.vue', '.js');
|
|
const output = fs.existsSync(outputJsPath) ? outputVuePath : outputJsPath;
|
|
|
|
fs.outputFileSync(output, compiler(source, compilerOption).js);
|
|
} else if (/\.js$/.test(file)) {
|
|
const { code } = babel.transformFileSync(absolutePath, compilerOption.babel);
|
|
fs.outputFileSync(absolutePath, code);
|
|
}
|
|
});
|
|
}
|
|
|
|
process.env.BABEL_MODULE = 'commonjs';
|
|
|
|
fs.copySync(esDir, libDir);
|
|
compile(libDir);
|
|
|
|
function isDir(dir) {
|
|
return fs.lstatSync(dir).isDirectory();
|
|
}
|