Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
Switch from eval-cheap-source-map to inline-eval-cheap-source-map
Browse files Browse the repository at this point in the history
… for presumably faster builds erikras/react-redux-universal-hot-example#616
  • Loading branch information
kvz committed Mar 23, 2017
1 parent 13516fc commit 8106477
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ Released: TBA.
- [ ] Fix bug where osx/rvm install won't work via `LANYON_ONLY=rvm ./scripts/test-acceptance.sh`
- [ ] Ship a `deploy` executable for Travis instead of generating one, which relies on `lanyon install`, which is not a file, resulting in more complicated `.travis.yml` files
- [ ] Fix bug where failed deploy is not fatal: https://travis-ci.org/kvz/invig/builds/202931498#L627

## v0.0.63

Released: 2017-03-23.
[Diff](https://github.com/kvz/lanyon/compare/v0.0.62...v0.0.63).

- [x] Switch from `eval-cheap-source-map` to `inline-eval-cheap-source-map` for presumably faster builds https://github.com/erikras/react-redux-universal-hot-example/issues/616
- [x] Upgrade GitHub pages from 112 to 129
- [x] Remove `jekyll-crosspost-to-medium` as built in gem
- [x] Downgrade `css-loader` to 0.14.5 to address superslow HMR builds https://github.com/webpack-contrib/css-loader/issues/124
Expand Down
3 changes: 2 additions & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ const cfg = {
chunkFilename: getFilename('js', true),
cssFilename : getFilename('css'),
},
devtool: 'eval-cheap-source-map',
// devtool: 'eval-cheap-source-map',
devtool: 'inline-eval-cheap-source-map',
// devtool: 'source-map',
bail : false, // <-- We use our own ReportErrors plugin as with bail errors details are lost. e.g.: `Error at NormalModule.onModuleBuildFailed`
module : {
Expand Down

0 comments on commit 8106477

Please sign in to comment.