Skip to content

Commit

Permalink
Move webpack config to root
Browse files Browse the repository at this point in the history
Then we can include all server repo webpack configs in 1 go

Signed-off-by: Roeland Jago Douma <[email protected]>
  • Loading branch information
rullzer committed Feb 13, 2019
1 parent 6c6642e commit 329da5f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"test": "tests"
},
"scripts": {
"build": "webpack --progress --hide-modules --config core/webpack.prod.js",
"dev": "webpack --progress --watch --config core/webpack.dev.js"
"build": "webpack --progress --hide-modules --config webpack.prod.js",
"dev": "webpack --progress --watch --config webpack.dev.js"
},
"repository": {
"type": "git",
Expand Down
3 changes: 3 additions & 0 deletions webpack.common.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const core = require('./core/webpack');

module.exports = [].concat(core);
File renamed without changes.
File renamed without changes.

0 comments on commit 329da5f

Please sign in to comment.