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 5 years ago
parent 6c6642e8ee
commit 329da5fb99
No known key found for this signature in database
GPG Key ID: F941078878347C0C

@ -8,8 +8,8 @@
"test": "tests" "test": "tests"
}, },
"scripts": { "scripts": {
"build": "webpack --progress --hide-modules --config core/webpack.prod.js", "build": "webpack --progress --hide-modules --config webpack.prod.js",
"dev": "webpack --progress --watch --config core/webpack.dev.js" "dev": "webpack --progress --watch --config webpack.dev.js"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

@ -0,0 +1,3 @@
const core = require('./core/webpack');
module.exports = [].concat(core);
Loading…
Cancel
Save