mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-14 16:52:26 +08:00
15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
const common = require('./common');
|
|
const Listr = require('listr');
|
|
|
|
|
|
async function main() {
|
|
const tasks = [];
|
|
common.packages.forEach(package => {
|
|
common.preparePackage(tasks, package, false, false);
|
|
});
|
|
|
|
const listr = new Listr(tasks, { showSubtasks: true });
|
|
await listr.run();
|
|
}
|
|
|
|
main(); |