Remove remnants of the packager
Summary: There were still some references to "packager/" that are no longer used since the `packager` directory has been deleted after moving to Metro. Cleaned up the ones that were doing nothing and updated the references that are still meaningful. Closes https://github.com/facebook/react-native/pull/14881 Reviewed By: cpojer Differential Revision: D5380731 Pulled By: javache fbshipit-source-id: 1355268f48db47343d0d38fae2598b64c8c01475
This commit is contained in:
parent
6c2beaffdc
commit
6e13adbf56
|
@ -3,4 +3,3 @@
|
||||||
**/staticBundle.js
|
**/staticBundle.js
|
||||||
**/main.js
|
**/main.js
|
||||||
Libraries/vendor/**/*
|
Libraries/vendor/**/*
|
||||||
packager/src/worker-farm/**/*
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// This is a stub for flow to make it understand require('./icon.png')
|
// This is a stub for flow to make it understand require('./icon.png')
|
||||||
// See packager/src/Bundler/index.js
|
// See metro-bundler/src/Bundler/index.js
|
||||||
|
|
||||||
var AssetRegistry = require('AssetRegistry');
|
var AssetRegistry = require('AssetRegistry');
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,7 @@
|
||||||
"^React$": "<rootDir>/node_modules/react"
|
"^React$": "<rootDir>/node_modules/react"
|
||||||
},
|
},
|
||||||
"modulePathIgnorePatterns": [
|
"modulePathIgnorePatterns": [
|
||||||
"<rootDir>/node_modules/react-native/Libraries/react-native/",
|
"<rootDir>/node_modules/react-native/Libraries/react-native/"
|
||||||
"<rootDir>/node_modules/react-native/packager/"
|
|
||||||
],
|
],
|
||||||
"transformIgnorePatterns": [
|
"transformIgnorePatterns": [
|
||||||
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element)"
|
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element)"
|
||||||
|
|
|
@ -26,8 +26,7 @@
|
||||||
"Libraries/Renderer",
|
"Libraries/Renderer",
|
||||||
"/node_modules/",
|
"/node_modules/",
|
||||||
"/website/",
|
"/website/",
|
||||||
"local-cli/templates/",
|
"local-cli/templates/"
|
||||||
"packager/src/integration_tests/__tests__/basic_bundle-test.js"
|
|
||||||
],
|
],
|
||||||
"haste": {
|
"haste": {
|
||||||
"defaultPlatform": "ios",
|
"defaultPlatform": "ios",
|
||||||
|
|
|
@ -14,7 +14,6 @@ const escapeRegExp = require('lodash/escapeRegExp');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
const BABEL_ENABLED_PATHS = [
|
const BABEL_ENABLED_PATHS = [
|
||||||
'packager/src',
|
|
||||||
'local-cli',
|
'local-cli',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue