mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
32 lines
624 B
JavaScript
32 lines
624 B
JavaScript
import execa from 'execa';
|
|
import minimist from 'minimist';
|
|
|
|
const { type } = minimist(process.argv.slice(2));
|
|
|
|
const run = (bin, args, opts = {}) => execa(bin, args, { stdio: 'inherit', ...opts });
|
|
|
|
const main = async () => {
|
|
// 按照依赖顺序构建
|
|
const packages = [
|
|
'schema',
|
|
'utils',
|
|
'dep',
|
|
'data-source',
|
|
'core',
|
|
'design',
|
|
'element-plus-adapter',
|
|
'tdesign-vue-next-adapter',
|
|
'form',
|
|
'table',
|
|
'stage',
|
|
'editor',
|
|
'cli',
|
|
];
|
|
|
|
for (const pkg of packages) {
|
|
await run('pnpm', ['--filter', `@tmagic/${pkg}`, type ? 'build:type' : 'build']);
|
|
}
|
|
};
|
|
|
|
main();
|