Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…react-app

# 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
  • Loading branch information
kitze committed Sep 27, 2016
2 parents bc37bfb + 37819ee commit c081751
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Inside any created project that has not been ejected, run:
npm install --save-dev --save-exact react-scripts@0.6.0
```

**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.**

## 0.5.1 (September 23, 2016)

### Build Dependency (`react-scripts`)
Expand Down
1 change: 1 addition & 0 deletions packages/react-dev-utils/webpackHotDevClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ function addOverlayDivTo(iframe) {
var div = iframe.contentDocument.createElement('div');
div.id = 'react-dev-utils-webpack-hot-dev-client-overlay-div';
div.style.position = 'fixed';
div.style.boxSizing = 'border-box';
div.style.left = 0;
div.style.top = 0;
div.style.right = 0;
Expand Down
2 changes: 1 addition & 1 deletion packages/react-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"postcss-loader": "0.13.0",
"promise": "7.1.1",
"react-dev-utils": "^0.2.0",
"recursive-readdir": "2.0.0",
"recursive-readdir": "2.1.0",
"rimraf": "2.5.4",
"strip-ansi": "3.0.1",
"style-loader": "0.13.1",
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 @@ -88,7 +88,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
}

console.log();
console.log('Success! Created ' + appName + ' at ' + appPath + '.');
console.log('Success! Created ' + appName + ' at ' + appPath);
console.log('Inside that directory, you can run several commands:');
console.log();
console.log(chalk.cyan(' npm start'));
Expand Down

0 comments on commit c081751

Please sign in to comment.