mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
27 lines
695 B
JavaScript
27 lines
695 B
JavaScript
/**
|
|
* Build npm lib
|
|
*/
|
|
const shell = require('shelljs');
|
|
const signale = require('signale');
|
|
|
|
const { Signale } = signale;
|
|
const tasks = [
|
|
'npm run bootstrap',
|
|
'npm run lint',
|
|
'npm run build:entry',
|
|
'node build/build-components.js --color',
|
|
'node build/build-style.js',
|
|
'node build/build-style-entry.js',
|
|
'cross-env NODE_ENV=production webpack --color --config build/webpack.config.js',
|
|
'cross-env NODE_ENV=production webpack -p --color --config build/webpack.config.js'
|
|
];
|
|
|
|
tasks.forEach(task => {
|
|
signale.start(task);
|
|
|
|
const interactive = new Signale({ interactive: true });
|
|
interactive.pending(task);
|
|
shell.exec(`${task} --silent`);
|
|
interactive.success(task);
|
|
});
|