diff --git a/CHANGELOG.md b/CHANGELOG.md index fb0504cd644..bf0b3b178ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`) diff --git a/packages/react-dev-utils/webpackHotDevClient.js b/packages/react-dev-utils/webpackHotDevClient.js index b92a0059129..ad8560fa043 100644 --- a/packages/react-dev-utils/webpackHotDevClient.js +++ b/packages/react-dev-utils/webpackHotDevClient.js @@ -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; diff --git a/packages/react-scripts/package.json b/packages/react-scripts/package.json index 5245195d625..fcbac2bca2a 100644 --- a/packages/react-scripts/package.json +++ b/packages/react-scripts/package.json @@ -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", diff --git a/packages/react-scripts/scripts/init.js b/packages/react-scripts/scripts/init.js index 587985d51c4..932220d9499 100644 --- a/packages/react-scripts/scripts/init.js +++ b/packages/react-scripts/scripts/init.js @@ -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'));