Remove parse

Reviewed By: davidaurelio

Differential Revision: D4174312

fbshipit-source-id: 024ae3da56c1afd882f808c15a3b90db35627587
This commit is contained in:
Andres Suarez 2016-11-15 04:59:12 -08:00 committed by Facebook Github Bot
parent 2ed588751d
commit 72157cf991
3 changed files with 2 additions and 13 deletions

View File

@ -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",

View File

@ -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 = [

View File

@ -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,