disable symink finder to fix tests

Summary:
cc Kureev

Disabling symlink resolver temporarily because it breaks launchPackager.command.
Waiting for a PR with a fix to enable both
Closes https://github.com/facebook/react-native/pull/9166

Differential Revision: D3655846

Pulled By: matryoshcow

fbshipit-source-id: da0bfc64f5fd9d747db2b97d669fcb98250faf39
This commit is contained in:
Konstantin Raev 2016-08-02 09:33:53 -07:00 committed by Facebook Github Bot 2
parent 43f73f675f
commit 55300382c6

View File

@ -18,10 +18,11 @@ const findSymlinksPaths = require('./findSymlinksPaths');
* Starts the React Native Packager Server.
*/
function server(argv, config, args) {
args.projectRoots = args.projectRoots.concat(
args.root,
findSymlinksPaths(path.resolve(process.cwd(), 'node_modules'))
);
// Disabled temporarily to fix trunk
// args.projectRoots = args.projectRoots.concat(
// args.root,
// findSymlinksPaths(path.resolve(process.cwd(), 'node_modules'))
// );
console.log(formatBanner(
'Running packager on port ' + args.port + '.\n\n' +