Skip to content

Commit

Permalink
build(package.json): Fix webpack version, add missing babel-core depe…
Browse files Browse the repository at this point in the history
…ndency

Fresh npm installs were pulling Webpack 3.0 — but 1.x is required for
the rest of the dependencies. This commit fixes that.

babel-loader requires babel-core to be installed locally or globally.
The missing dependency is added here.
  • Loading branch information
gristow committed Jul 18, 2017
1 parent cf82fcc commit 4425632
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -17,6 +17,7 @@
"url": "https://github.com/0xfe/vexflow/issues"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
Expand Down Expand Up @@ -47,7 +48,7 @@
"qunit": "^0.9.1",
"raphael": "^2.1.0",
"slimerjs": "^0.906.2",
"webpack": "*",
"webpack": "^1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
Expand Down

0 comments on commit 4425632

Please sign in to comment.