Skip to content

Commit

Permalink
Fix run bundle -> run build
Browse files Browse the repository at this point in the history
  • Loading branch information
unional committed Mar 4, 2016
1 parent 8060c3c commit 3e1e215
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ module.exports = yeoman.Base.extend({
this.spawnCommandSync('npm', ['install', '-D', this.sourcePackageName]);
}
},
runBundle() {
this.log(`Running ${chalk.green('npm run bundle') }...`);
this.spawnCommandSync('npm', ['run', 'bundle']);
runBuild() {
this.log(`Running ${chalk.green('npm run build') }...`);
this.spawnCommandSync('npm', ['run', 'build']);
}
},
end: {
Expand Down

0 comments on commit 3e1e215

Please sign in to comment.