Skip to content

Commit c081751

Browse files
committed
# By Ville Immonen (2) and others # Via Dan Abramov * 'master' of https://github.com/facebookincubator/create-react-app: added link to better visualizing tool (facebook#764) Fix the right and bottom padding of the error overlay (facebook#758) Remove the `.` at the end of the init message (facebook#760) Bump recursive-readdir (facebook#756) Forked react-scripts should retain the binary name (facebook#754) Mention the npm bug in migration instructions
2 parents bc37bfb + 37819ee commit c081751

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Inside any created project that has not been ejected, run:
1616
npm install --save-dev --save-exact [email protected]
1717
```
1818

19+
**Note: If the project fails to start, remove `node_modules`, ensure `react-scripts` is `0.6.0` in your `package.json`, and run `npm install` again. There seems to be an [npm bug](https://github.com/npm/npm/issues/14073) affecting this update.**
20+
1921
## 0.5.1 (September 23, 2016)
2022

2123
### Build Dependency (`react-scripts`)

packages/react-dev-utils/webpackHotDevClient.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ function addOverlayDivTo(iframe) {
6060
var div = iframe.contentDocument.createElement('div');
6161
div.id = 'react-dev-utils-webpack-hot-dev-client-overlay-div';
6262
div.style.position = 'fixed';
63+
div.style.boxSizing = 'border-box';
6364
div.style.left = 0;
6465
div.style.top = 0;
6566
div.style.right = 0;

packages/react-scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"postcss-loader": "0.13.0",
6565
"promise": "7.1.1",
6666
"react-dev-utils": "^0.2.0",
67-
"recursive-readdir": "2.0.0",
67+
"recursive-readdir": "2.1.0",
6868
"rimraf": "2.5.4",
6969
"strip-ansi": "3.0.1",
7070
"style-loader": "0.13.1",

packages/react-scripts/scripts/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
8888
}
8989

9090
console.log();
91-
console.log('Success! Created ' + appName + ' at ' + appPath + '.');
91+
console.log('Success! Created ' + appName + ' at ' + appPath);
9292
console.log('Inside that directory, you can run several commands:');
9393
console.log();
9494
console.log(chalk.cyan(' npm start'));

0 commit comments

Comments
 (0)