chore(build): update build scripts

This commit is contained in:
Adam Bradley
2018-03-03 00:03:27 -06:00
parent afd89e77e4
commit 8d704947b9
4 changed files with 11 additions and 12 deletions

View File

@ -135,7 +135,7 @@ function runTasks(opts) {
task: () => execa('npm', ['run', 'lint'], { cwd: rootDir })
},
{
title: 'Build @ionic/angular',
title: 'Build ' + pkg.name,
task: () => execa('npm', ['run', 'build'], { cwd: rootDir })
},
{
@ -160,7 +160,7 @@ function runTasks(opts) {
if (opts.publish) {
tasks.push(
{
title: 'Publish @ionic/angular',
title: 'Publish ' + pkg.name,
task: () => execa('npm', ['publish'].concat(opts.tag ? ['--tag', opts.tag] : []), { cwd: rootDir })
},
{