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:
James Ide 2017-07-07 02:58:55 -07:00 committed by Facebook Github Bot
parent 6c2beaffdc
commit 6e13adbf56
5 changed files with 3 additions and 7 deletions

View File

@ -3,4 +3,3 @@
**/staticBundle.js
**/main.js
Libraries/vendor/**/*
packager/src/worker-farm/**/*

View File

@ -12,7 +12,7 @@
'use strict';
// 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');

View File

@ -11,8 +11,7 @@
"^React$": "<rootDir>/node_modules/react"
},
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/react-native/Libraries/react-native/",
"<rootDir>/node_modules/react-native/packager/"
"<rootDir>/node_modules/react-native/Libraries/react-native/"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element)"

View File

@ -26,8 +26,7 @@
"Libraries/Renderer",
"/node_modules/",
"/website/",
"local-cli/templates/",
"packager/src/integration_tests/__tests__/basic_bundle-test.js"
"local-cli/templates/"
],
"haste": {
"defaultPlatform": "ios",

View File

@ -14,7 +14,6 @@ const escapeRegExp = require('lodash/escapeRegExp');
const path = require('path');
const BABEL_ENABLED_PATHS = [
'packager/src',
'local-cli',
];