52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
|
|
const {exec, Packages} = require('./tool');
|
|
const {plugins, allPackage, mainPackage, npmPackage} = Packages;
|
|
|
|
// plugins 'main' 'npm' 可选
|
|
// npm run build: 默认build 全部
|
|
// npm run build main poly npm: build三个
|
|
|
|
async function main () {
|
|
const webpack = 'node ./node_modules/webpack/bin/webpack.js --config ';
|
|
const buildPlugin = 'webpack-config/build.plugin.js --env.pluginname=';
|
|
const buildMain = `${webpack}webpack-config/build.js`;
|
|
const buildNpm = `node ./helper/build-npm.js`;
|
|
let cmds = [];
|
|
let cmdConsole = [];
|
|
const packages = process.argv.slice(2);
|
|
|
|
packages.forEach(package => {
|
|
if (plugins.includes(package) || package === allPackage) {
|
|
cmds.push(`${webpack} ${buildPlugin}${package}`);
|
|
cmdConsole.push(package);
|
|
} else if (package === mainPackage) {
|
|
cmds.push(buildMain);
|
|
cmdConsole.push(mainPackage);
|
|
} else if (package === npmPackage) {
|
|
cmds.push(buildNpm);
|
|
cmdConsole.push(npmPackage);
|
|
}
|
|
});
|
|
if (cmds.length === 0) {
|
|
cmds = [
|
|
buildMain,
|
|
...plugins.map(plugin => `${webpack} ${buildPlugin}${plugin}`),
|
|
`${webpack} ${buildPlugin}${allPackage}`,
|
|
buildNpm
|
|
];
|
|
cmdConsole = [
|
|
mainPackage,
|
|
...plugins,
|
|
allPackage,
|
|
npmPackage
|
|
];
|
|
}
|
|
console.log(`Start Building... [0/${cmds.length}]`);
|
|
for (let i = 0; i < cmds.length; i++) {
|
|
await exec(cmds[i]);
|
|
console.log(`${cmdConsole[i]} build success. [${i + 1}/${cmds.length}]`);
|
|
}
|
|
console.log('Finished!');
|
|
}
|
|
|
|
main(); |