fix issue to try to compile webpack bundle, the problem was that...
fix issue to try to compile webpack bundle, the problem was that babel-preset-es2015-webpack is not supported on npm version 3.*, so instead we start to use babel-preset-es2015 to solve the problem
Showing
... | ... | @@ -16,6 +16,7 @@ |
"keymirror": "0.1.1", | ||
"lodash": "^4.11.1", | ||
"moment": "^2.13.0", | ||
"node-sass": "^3.8.0", | ||
"nprogress": "^0.2.0", | ||
"object-assign": "4.0.1", | ||
"react": "15.0.1", | ||
... | ... | @@ -39,7 +40,7 @@ |
"babel-loader": "6.2.4", | ||
"babel-plugin-transform-runtime": "6.7.5", | ||
"babel-polyfill": "6.7.4", | ||
"babel-preset-es2015-webpack": "6.4.1", | ||
"babel-preset-es2015": "^6.13.2", | ||
"babel-preset-react": "6.5.0", | ||
"babel-preset-stage-0": "6.5.0", | ||
"babel-runtime": "^6.6.1", | ||
... | ... | @@ -61,7 +62,6 @@ |
"imports-loader": "0.6.5", | ||
"json-loader": "0.5.4", | ||
"morgan": "^1.7.0", | ||
"node-sass": "3.6.0", | ||
"raw-loader": "0.5.1", | ||
"sass-loader": "3.2.0", | ||
"style-loader": "0.13.1", | ||
... | ... |
Please register or sign in to comment