Upgrade to react-native 0.56
Signed-off-by: Max Risuhin <risuhin.max@gmail.com>
This commit is contained in:
parent
85a8a35399
commit
6cdff789e1
File diff suppressed because it is too large
Load Diff
|
@ -25,12 +25,12 @@
|
|||
"dependencies": {
|
||||
"assert": "1.4.1",
|
||||
"asyncstorage-down": "4.0.1",
|
||||
"babel-core": "6.24.1",
|
||||
"babel-generator": "6.24.1",
|
||||
"babel-helper-builder-react-jsx": "6.18.0",
|
||||
"babel-plugin-transform-es2015-block-scoping": "6.15.0",
|
||||
"babel-preset-react-native": "4.0.0",
|
||||
"babel-register": "6.18.0",
|
||||
"@babel/core": "7.0.0-rc.2",
|
||||
"@babel/generator": "7.0.0-rc.2",
|
||||
"@babel/helper-builder-react-jsx": "7.0.0-rc.2",
|
||||
"@babel/plugin-transform-block-scoping": "7.0.0-rc.2",
|
||||
"@babel/register": "7.0.0-rc.2",
|
||||
"babel-preset-react-native": "5.0.2",
|
||||
"bignumber.js": "github:status-im/bignumber.js#master",
|
||||
"buffer": "3.6.0",
|
||||
"chance": "1.0.12",
|
||||
|
@ -45,16 +45,16 @@
|
|||
"instabug-reactnative": "2.12.0",
|
||||
"js-sha3": "^0.8.0",
|
||||
"level-filesystem": "1.2.0",
|
||||
"metro": "^0.30.2",
|
||||
"metro": "^0.38.1",
|
||||
"nfc-react-native": "github:status-im/nfc-react-native",
|
||||
"process": "0.11.10",
|
||||
"prop-types": "15.6.0",
|
||||
"punycode": "1.4.1",
|
||||
"querystring-es3": "0.2.1",
|
||||
"re-natal": "git+https://github.com/status-im/re-natal.git#master",
|
||||
"react": "16.3.1",
|
||||
"react-dom": "16.3.1",
|
||||
"react-native": "git+https://github.com/status-im/react-native-desktop.git",
|
||||
"react": "16.4.1",
|
||||
"react-dom": "16.4.1",
|
||||
"react-native": "git+https://github.com/status-im/react-native-desktop.git#master",
|
||||
"react-native-background-timer": "2.0.0",
|
||||
"react-native-camera": "0.10.0",
|
||||
"react-native-config": "git+https://github.com/status-im/react-native-config.git",
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
patch-package
|
||||
--- a/node_modules/metro/src/JSTransformer/index.js
|
||||
+++ b/node_modules/metro/src/JSTransformer/index.js
|
||||
@@ -151,6 +151,8 @@ module.exports = class Transformer {
|
||||
/^--heap[_-]growing[_-]percent=[0-9]+$/.test(arg) ||
|
||||
/^--max[_-]old[_-]space[_-]size=[0-9]+$/.test(arg));
|
||||
|
||||
--- a/node_modules/metro/src/JSTransformer.js
|
||||
+++ b/node_modules/metro/src/JSTransformer.js
|
||||
@@ -135,6 +135,7 @@ module.exports = class Transformer {
|
||||
if (execArgv.length > 0 && execArgv[0].charAt(0) !== '-') {
|
||||
execArgv.shift();
|
||||
}
|
||||
+ execArgv.push("--max-old-space-size=8192");
|
||||
+
|
||||
|
||||
const env = _extends({},
|
||||
process.env, {
|
||||
// Force color to print syntax highlighted code frames.
|
||||
--- a/node_modules/metro/src/defaults.js
|
||||
+++ b/node_modules/metro/src/defaults.js
|
||||
@@ -45,7 +45,7 @@ exports.sourceExts = ['js', 'json'];
|
Loading…
Reference in New Issue