Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #32 from netguru/fix-react-hot-loader
Browse files Browse the repository at this point in the history
Change react-hot-loader version from next (v.4 beta) to v.3
  • Loading branch information
Dominik Rowicki authored Jan 21, 2018
2 parents 2c8700a + 45c8a4f commit feca4e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"devDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "next",
"react-hot-loader": "^3.1.3",
"normalize.css": "^7.0.0"
},
"optionalDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports = function(
command = 'npm';
args = ['install', '--save', verbose && '--verbose'].filter(e => e);
}
args.push('react', 'react-dom', 'react-hot-loader@next', 'normalize.css');
args.push('react', 'react-dom', 'react-hot-loader@^3.1.3', 'normalize.css');

// Install additional template dependencies, if present
const templateDependenciesPath = path.join(
Expand Down

0 comments on commit feca4e4

Please sign in to comment.