Remove parse
Reviewed By: davidaurelio Differential Revision: D4174312 fbshipit-source-id: 024ae3da56c1afd882f808c15a3b90db35627587
This commit is contained in:
parent
2ed588751d
commit
72157cf991
|
@ -30,8 +30,7 @@
|
|||
"haste": {
|
||||
"defaultPlatform": "ios",
|
||||
"providesModuleNodeModules": [
|
||||
"react-native",
|
||||
"parse"
|
||||
"react-native"
|
||||
],
|
||||
"platforms": [
|
||||
"ios",
|
||||
|
@ -40,7 +39,7 @@
|
|||
},
|
||||
"modulePathIgnorePatterns": [
|
||||
"Libraries/react-native/",
|
||||
"/node_modules/(?!react|fbjs|react-native|parse|react-transform-hmr|core-js|promise)/",
|
||||
"/node_modules/(?!react|fbjs|react-native|react-transform-hmr|core-js|promise)/",
|
||||
"node_modules/react/node_modules/fbjs/",
|
||||
"node_modules/react/lib/ReactDOM.js",
|
||||
"node_modules/fbjs/lib/Map.js",
|
||||
|
|
|
@ -36,11 +36,6 @@ exports.polyfills = [
|
|||
exports.providesModuleNodeModules = [
|
||||
'react-native',
|
||||
'react-native-windows',
|
||||
// Parse requires AsyncStorage. They will
|
||||
// change that to require('react-native') which
|
||||
// should work after this release and we can
|
||||
// remove it from here.
|
||||
'parse',
|
||||
];
|
||||
|
||||
exports.runBeforeMainModule = [
|
||||
|
|
|
@ -205,11 +205,6 @@ describe('DependencyGraph', function() {
|
|||
'haste-fbjs',
|
||||
'react-haste',
|
||||
'react-native',
|
||||
// Parse requires AsyncStorage. They will
|
||||
// change that to require('react-native') which
|
||||
// should work after this release and we can
|
||||
// remove it from here.
|
||||
'parse',
|
||||
],
|
||||
platforms: ['ios', 'android'],
|
||||
shouldThrowOnUnresolvedErrors: () => false,
|
||||
|
|
Loading…
Reference in New Issue