Skip to content

Commit

Permalink
cli(init): add webpack-cli dep (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvdutt authored and evenstensberg committed Mar 20, 2018
1 parent 8787043 commit b6a30ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/generators/init-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ module.exports = class InitGenerator extends Generator {
constructor(args, opts) {
super(args, opts);
this.isProd = false;
this.dependencies = ["webpack", "uglifyjs-webpack-plugin"];
this.dependencies = [
"webpack",
"webpack-cli",
"uglifyjs-webpack-plugin"
];
this.configuration = {
config: {
webpackOptions: {},
Expand Down

0 comments on commit b6a30ad

Please sign in to comment.