Skip to content

Commit

Permalink
upgrade webpack to ^2.6.0
Browse files Browse the repository at this point in the history
This brings manager and docs up to the latest version of webpack 2.6
release. It will allow for future improvements that are only available
in webpack 2+.

Changes include:

- Updated syntax for webpack loaders. [link](https://webpack.js.org/guides/migrating/#module-loaders-is-now-module-rules)
- Use the babel-plugin-istanbul to instrument code for tests,
  as per recommendation by the webpack-contrib team. [link](webpack-contrib/istanbul-instrumenter-loader#44 (comment))
- Use `cross-env` for all npm scripts to improve compatibility.
  • Loading branch information
stvnjacobs committed Jul 12, 2017
1 parent 4ff525a commit 117b05e
Show file tree
Hide file tree
Showing 10 changed files with 6,050 additions and 433 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"env": {
"development": {
"presets": ["react-hmre"]
},
"test": {
"plugins": [
["istanbul"]
]
}
}
}
Loading

0 comments on commit 117b05e

Please sign in to comment.