-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update babel-runtime dependency in react-error-overlay and react-scripts #2991
Conversation
`babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5` `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0` > npm ls regenerator-runtime ``` └─┬ react-scripts@1.0.11 ├─┬ babel-core@6.25.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-eslint@7.2.3 │ └─┬ babel-traverse@6.26.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-runtime@6.23.0 │ └── regenerator-runtime@0.10.5 └─┬ react-error-overlay@1.0.10 └─┬ babel-runtime@6.23.0 └── regenerator-runtime@0.10.5 ```
ca42199
to
9e4c2ae
Compare
packages/react-scripts/package.json
Outdated
@@ -27,7 +27,7 @@ | |||
"babel-jest": "20.0.3", | |||
"babel-loader": "7.1.1", | |||
"babel-preset-react-app": "^3.0.2", | |||
"babel-runtime": "6.23.0", | |||
"babel-runtime": "^6.26.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please leave this pinned. It is intentionally using exact version.
@@ -25,6 +25,6 @@ | |||
"babel-preset-react": "6.24.1" | |||
}, | |||
"peerDependencies": { | |||
"babel-runtime": "^6.23.0" | |||
"babel-runtime": "^6.26.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we not do this yet? Doesn't seem like it's necessary for what you're doing.
@@ -33,7 +33,7 @@ | |||
"dependencies": { | |||
"anser": "1.4.1", | |||
"babel-code-frame": "6.22.0", | |||
"babel-runtime": "6.23.0", | |||
"babel-runtime": "^6.26.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please leave this pinned.
@gaearon changed as requested :) thanks for the review |
…react-app * 'master' of https://github.com/facebookincubator/create-react-app: (36 commits) Publish Changelog for 1.0.12 (facebook#3016) Relax React dep requirements Default Favicon lossless optimisation (facebook#2917) update babel-runtime dependency in react-error-overlay and react-scripts (facebook#2991) Convert react-error-overlay to React (facebook#2515) Bump react-dev-utils Fix module function name in error overlay (facebook#3012) Docs: debugging in WebStorm (facebook#2986) Fix docs for `printFileSizesAfterBuild` (facebook#2942) Remove Modulus from user guide (facebook#2948) Remove superfluous lodash usage (facebook#2938) Update README.md (facebook#2927) Publish Prepare for 1.0.11 release (facebook#2924) Update dev deps (facebook#2923) Update README.md Use env variable to disable source maps (facebook#2818) Make formatWebpackMessages return all messages (facebook#2834) Adjust the `checkIfOnline` check if in a corporate proxy environment (facebook#2884) ...
…pts (facebook#2991) * update babel-runtime dependency in react-error-overlay and react-scripts `babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5` `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0` > npm ls regenerator-runtime ``` └─┬ react-scripts@1.0.11 ├─┬ babel-core@6.25.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-eslint@7.2.3 │ └─┬ babel-traverse@6.26.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-runtime@6.23.0 │ └── regenerator-runtime@0.10.5 └─┬ react-error-overlay@1.0.10 └─┬ babel-runtime@6.23.0 └── regenerator-runtime@0.10.5 ``` * fix requested changes
## 1.0.13 (September 2, 2017) #### 🐛 Bug Fix * `react-error-overlay` * [#3051](#3051) Fix case-sensitivity issue with upgrading the package version. ([@tharakawj](https://github.com/tharakawj)) * `react-dev-utils` * [#3049](#3049) Print filesize difference for chunks. ([@esturcke](https://github.com/esturcke)) * `react-scripts` * [#3046](#3046) Fix crash in development mode on IE11. ([@tharakawj](https://github.com/tharakawj)) #### 💅 Enhancement * `react-scripts` * [#3033](#3033) Add an empty mock for `child_process` to let some libraries compile. ([@McFlurriez](https://github.com/McFlurriez)) #### 🏠 Internal * `react-dev-utils`, `react-error-overlay` * [#3028](#3028) Make error overlay filename configurable. ([@jaredpalmer](https://github.com/jaredpalmer)) #### Committers: 4 - Anthony ([McFlurriez](https://github.com/McFlurriez)) - Erik J. Sturcke ([esturcke](https://github.com/esturcke)) - Jared Palmer ([jaredpalmer](https://github.com/jaredpalmer)) - Tharaka Wijebandara ([tharakawj](https://github.com/tharakawj)) ### Migrating from 1.0.12 to 1.0.13 Inside any created project that has not been ejected, run: ``` npm install --save --save-exact react-scripts@1.0.13 ``` or ``` yarn add --exact react-scripts@1.0.13 ``` ## 1.0.12 (August 28, 2017) #### 🐛 Bug Fix * `react-error-overlay` * [#3012](#3012) Fix module function name in error overlay. ([@gaearon](https://github.com/gaearon)) * `react-dev-utils` * [#2938](#2938) Remove superfluous lodash usage. ([@Timer](https://github.com/Timer)) #### 💅 Enhancement * `react-scripts` * [#2917](#2917) Optimize the size of default favicon. ([@sylvainbaronnet](https://github.com/sylvainbaronnet)) #### 📝 Documentation * `react-scripts` * [#2986](#2986) Docs: debugging in WebStorm. ([@prigara](https://github.com/prigara)) * [#2948](#2948) Remove Modulus from user guide. ([@Zertz](https://github.com/Zertz)) * [#2927](#2927) Update README.md. ([@tbassetto](https://github.com/tbassetto)) * `react-dev-utils` * [#2942](#2942) Fix docs for `printFileSizesAfterBuild`. ([@Kerumen](https://github.com/Kerumen)) #### 🏠 Internal * `react-error-overlay`, `react-scripts` * [#2991](#2991) Update `babel-runtime` dependency ([@christophehurpeau](https://github.com/christophehurpeau)) * `react-dev-utils`, `react-error-overlay`, `react-scripts` * [#2515](#2515) Convert `react-error-overlay` to React ([@tharakawj](https://github.com/tharakawj)) #### Committers: 9 - Christophe Hurpeau ([christophehurpeau](https://github.com/christophehurpeau)) - Dan Abramov ([gaearon](https://github.com/gaearon)) - Ekaterina Prigara ([prigara](https://github.com/prigara)) - Joe Haddad ([Timer](https://github.com/Timer)) - Pier-Luc Gendreau ([Zertz](https://github.com/Zertz)) - Sylvain Baronnet ([sylvainbaronnet](https://github.com/sylvainbaronnet)) - Tharaka Wijebandara ([tharakawj](https://github.com/tharakawj)) - Thomas Bassetto ([tbassetto](https://github.com/tbassetto)) - Yann Pringault ([Kerumen](https://github.com/Kerumen)) ### Migrating from 1.0.11 to 1.0.12 Inside any created project that has not been ejected, run: ``` npm install --save --save-exact react-scripts@1.0.12 ``` or ``` yarn add --exact react-scripts@1.0.12 ``` **Note:** there’s a [known issue](#3041) that might cause the project to not compile after upgrading. In this case, migrate straight to `1.0.13` which doesn’t have this issue.
…pts (#2991) * update babel-runtime dependency in react-error-overlay and react-scripts `babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5` `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0` > npm ls regenerator-runtime ``` └─┬ react-scripts@1.0.11 ├─┬ babel-core@6.25.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-eslint@7.2.3 │ └─┬ babel-traverse@6.26.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-runtime@6.23.0 │ └── regenerator-runtime@0.10.5 └─┬ react-error-overlay@1.0.10 └─┬ babel-runtime@6.23.0 └── regenerator-runtime@0.10.5 ``` * fix requested changes
…pts (facebook#2991) * update babel-runtime dependency in react-error-overlay and react-scripts `babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5` `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0` > npm ls regenerator-runtime ``` └─┬ react-scripts@1.0.11 ├─┬ babel-core@6.25.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-eslint@7.2.3 │ └─┬ babel-traverse@6.26.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-runtime@6.23.0 │ └── regenerator-runtime@0.10.5 └─┬ react-error-overlay@1.0.10 └─┬ babel-runtime@6.23.0 └── regenerator-runtime@0.10.5 ``` * fix requested changes
…pts (facebook#2991) * update babel-runtime dependency in react-error-overlay and react-scripts `babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5` `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0` > npm ls regenerator-runtime ``` └─┬ react-scripts@1.0.11 ├─┬ babel-core@6.25.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-eslint@7.2.3 │ └─┬ babel-traverse@6.26.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-runtime@6.23.0 │ └── regenerator-runtime@0.10.5 └─┬ react-error-overlay@1.0.10 └─┬ babel-runtime@6.23.0 └── regenerator-runtime@0.10.5 ``` * fix requested changes
…pts (facebook#2991) * update babel-runtime dependency in react-error-overlay and react-scripts `babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5` `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0` > npm ls regenerator-runtime ``` └─┬ react-scripts@1.0.11 ├─┬ babel-core@6.25.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-eslint@7.2.3 │ └─┬ babel-traverse@6.26.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-runtime@6.23.0 │ └── regenerator-runtime@0.10.5 └─┬ react-error-overlay@1.0.10 └─┬ babel-runtime@6.23.0 └── regenerator-runtime@0.10.5 ``` * fix requested changes
…pts (#2991) * update babel-runtime dependency in react-error-overlay and react-scripts `babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5` `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0` > npm ls regenerator-runtime ``` └─┬ react-scripts@1.0.11 ├─┬ babel-core@6.25.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-eslint@7.2.3 │ └─┬ babel-traverse@6.26.0 │ └─┬ babel-runtime@6.26.0 │ └── regenerator-runtime@0.11.0 ├─┬ babel-runtime@6.23.0 │ └── regenerator-runtime@0.10.5 └─┬ react-error-overlay@1.0.10 └─┬ babel-runtime@6.23.0 └── regenerator-runtime@0.10.5 ``` * fix requested changes
babel-runtime@6.23.0
have a dependency onregenerator-runtime@0.10.5
babel-runtime@6.26.0
onregenerator-runtime@0.11.0