Update to Webpack 2.1 beta 27

This commit is contained in:
Schuyler Cebulskie
2016-11-20 20:19:43 -05:00
parent 6383d42eb5
commit 411c9bd32c
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
"docs": "node docs/generator",
"test-docs": "node docs/generator test",
"lint": "eslint src",
"web-dist": "npm install && ./node_modules/parallel-webpack/bin/run.js"
"web-dist": "npm install && node ./node_modules/parallel-webpack/bin/run.js"
},
"repository": {
"type": "git",
@@ -45,7 +45,7 @@
"parallel-webpack": "^1.5.0",
"uglify-js": "github:mishoo/UglifyJS2#harmony",
"utf-8-validate": "^1.2.1",
"webpack": "^1.13.3",
"webpack": "2.1.0-beta.27",
"zlibjs": "github:imaya/zlib.js"
},
"engines": {

View File

@@ -23,7 +23,7 @@ const createConfig = (options) => {
filename,
},
module: {
loaders: [
rules: [
{ test: /\.json$/, loader: 'json-loader' },
{ test: /\.md$/, loader: 'ignore-loader' },
],