mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
26 lines
474 B
JavaScript
26 lines
474 B
JavaScript
/**
|
|
* Build npm lib
|
|
*/
|
|
const shell = require('shelljs');
|
|
const signale = require('signale');
|
|
|
|
const { Signale } = signale;
|
|
const tasks = [
|
|
'bootstrap',
|
|
'lint',
|
|
'build:entry',
|
|
'build:components',
|
|
'build:style',
|
|
'build:style-entry',
|
|
'build:vant'
|
|
];
|
|
|
|
tasks.forEach(task => {
|
|
signale.start(task);
|
|
|
|
const interactive = new Signale({ interactive: true });
|
|
interactive.pending(task);
|
|
shell.exec(`npm run ${task} --silent`);
|
|
interactive.success(task);
|
|
});
|