mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
0.1.4
This commit is contained in:
@ -30,7 +30,7 @@ async function publishProject(project, version) {
|
||||
const projectRoot = common.projectPath(project);
|
||||
const listr = new Listr([{
|
||||
title: `Publish (latest) ${project} (v${version})`,
|
||||
task: () => execa('npm', ['publish'].concat(opts.tag ? ['--tag', 'latest'] : []), { cwd: projectRoot })
|
||||
task: () => execa('npm', ['publish', '--tag', 'latest'], { cwd: projectRoot })
|
||||
}], { showSubtasks: false });
|
||||
await listr.run();
|
||||
}
|
||||
|
Reference in New Issue
Block a user