Browse Source
Move webpack config to root
Then we can include all server repo webpack configs in 1 go
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/14148/head
Roeland Jago Douma
7 years ago
No known key found for this signature in database
GPG Key ID: F941078878347C0C
5 changed files with
5 additions and
2 deletions
-
core/webpack.js
-
package.json
-
webpack.common.js
-
webpack.dev.js
-
webpack.prod.js
|
|
|
@ -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", |
|
|
|
|
|
|
|
@ -0,0 +1,3 @@ |
|
|
|
const core = require('./core/webpack'); |
|
|
|
|
|
|
|
module.exports = [].concat(core); |