Update Babel/React Dependencies
Summary:PR does as it says -- updates Babel dependencies to latest versions. In general, this changes nothing for 99.9% of users (everyone that isn't FB). If they were to `npm install react-native` right now, they would get all of these dependencies anyway. However, this does revert a previous change where we were using "~" instead of "^" in front of the Babel deps in order to attempt to lock them to minor dependencies. However, due to the fact that each Babel package uses "^", and there are so many interdependencies, this actually would cause an issue where multiple versions of babel-core, et. al. to be installed. *Edit* - In addition, we add React to `devDependencies` so that it behaves properly in testing, now that it's a peer dependency. Closes https://github.com/facebook/react-native/pull/5811 Reviewed By: davidaurelio Differential Revision: D2931184 Pulled By: martinbigio fb-gh-sync-id: 7b9fc640d37fb2d98fc1808860f9f64074aff475 shipit-source-id: 7b9fc640d37fb2d98fc1808860f9f64074aff475
This commit is contained in:
parent
8a1629166e
commit
f5edabf3db
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "babel-preset-react-native",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.1",
|
||||
"description": "Babel preset for React Native applications",
|
||||
"main": "index.js",
|
||||
"repository": "https://github.com/facebook/react-native/tree/master/babel-preset",
|
||||
|
@ -16,30 +16,30 @@
|
|||
"homepage": "https://github.com/facebook/react-native/tree/master/babel-preset/README.md",
|
||||
"dependencies": {
|
||||
"babel-plugin-react-transform": "2.0.0-beta1",
|
||||
"babel-plugin-syntax-async-functions": "^6.3.13",
|
||||
"babel-plugin-syntax-class-properties": "^6.3.13",
|
||||
"babel-plugin-syntax-flow": "^6.3.13",
|
||||
"babel-plugin-syntax-jsx": "^6.3.13",
|
||||
"babel-plugin-syntax-trailing-function-commas": "^6.3.13",
|
||||
"babel-plugin-transform-class-properties": "^6.4.0",
|
||||
"babel-plugin-transform-es2015-arrow-functions": "^6.4.0",
|
||||
"babel-plugin-transform-es2015-block-scoping": "^6.4.0",
|
||||
"babel-plugin-transform-es2015-classes": "^6.4.0",
|
||||
"babel-plugin-transform-es2015-computed-properties": "^6.4.0",
|
||||
"babel-plugin-syntax-async-functions": "^6.5.0",
|
||||
"babel-plugin-syntax-class-properties": "^6.5.0",
|
||||
"babel-plugin-syntax-flow": "^6.5.0",
|
||||
"babel-plugin-syntax-jsx": "^6.5.0",
|
||||
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
|
||||
"babel-plugin-transform-class-properties": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-arrow-functions": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-block-scoping": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-classes": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-computed-properties": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-constants": "^6.1.4",
|
||||
"babel-plugin-transform-es2015-destructuring": "^6.4.0",
|
||||
"babel-plugin-transform-es2015-for-of": "^6.3.13",
|
||||
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.0",
|
||||
"babel-plugin-transform-es2015-parameters": "^6.4.2",
|
||||
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
|
||||
"babel-plugin-transform-es2015-spread": "^6.4.0",
|
||||
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
|
||||
"babel-plugin-transform-flow-strip-types": "^6.4.0",
|
||||
"babel-plugin-transform-object-assign": "^6.3.13",
|
||||
"babel-plugin-transform-object-rest-spread": "^6.3.13",
|
||||
"babel-plugin-transform-react-display-name": "^6.4.0",
|
||||
"babel-plugin-transform-react-jsx": "^6.4.0",
|
||||
"babel-plugin-transform-regenerator": "^6.3.26",
|
||||
"babel-plugin-transform-es2015-destructuring": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-for-of": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-modules-commonjs": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-parameters": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-spread": "^6.5.0",
|
||||
"babel-plugin-transform-es2015-template-literals": "^6.5.0",
|
||||
"babel-plugin-transform-flow-strip-types": "^6.5.0",
|
||||
"babel-plugin-transform-object-assign": "^6.5.0",
|
||||
"babel-plugin-transform-object-rest-spread": "^6.5.0",
|
||||
"babel-plugin-transform-react-display-name": "^6.5.0",
|
||||
"babel-plugin-transform-react-jsx": "^6.5.0",
|
||||
"babel-plugin-transform-regenerator": "^6.5.0",
|
||||
"react-transform-hmr": "^1.0.2"
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
17
package.json
17
package.json
|
@ -129,13 +129,13 @@
|
|||
"dependencies": {
|
||||
"absolute-path": "^0.0.0",
|
||||
"art": "^0.10.0",
|
||||
"babel-core": "~6.4.5",
|
||||
"babel-plugin-external-helpers": "~6.4.0",
|
||||
"babel-polyfill": "~6.3.14",
|
||||
"babel-preset-react-native": "^1.2.4",
|
||||
"babel-register": "~6.4.3",
|
||||
"babel-types": "~6.4.5",
|
||||
"babylon": "~6.4.5",
|
||||
"babel-core": "^6.6.4",
|
||||
"babel-plugin-external-helpers": "^6.5.0",
|
||||
"babel-polyfill": "^6.6.1",
|
||||
"babel-preset-react-native": "^1.5.1",
|
||||
"babel-register": "^6.6.0",
|
||||
"babel-types": "^6.6.4",
|
||||
"babylon": "^6.6.4",
|
||||
"base64-js": "^0.0.8",
|
||||
"bser": "^1.0.2",
|
||||
"chalk": "^1.1.1",
|
||||
|
@ -184,6 +184,7 @@
|
|||
"eslint-plugin-react": "^4.1.0",
|
||||
"flow-bin": "^0.21.0",
|
||||
"jest-cli": "0.9.0-fb2",
|
||||
"portfinder": "0.4.0"
|
||||
"portfinder": "0.4.0",
|
||||
"react": "^0.14.5"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue