mirror of
https://github.com/status-im/react-native.git
synced 2025-01-15 03:56:03 +00:00
29d9c35e12
Summary: This diff cleans up some cruft and adds some features: * It removes the usage of an env variable to control workers. * It removes the lazy and handwavy calculation on how many workers to use for jest-haste-map. Jest itself uses the maximum amount of workers available and it has never been reported as an issue – especially since it is a one-time startup cost of about 3 seconds on a cold cache only. * It adds a `--max-workers` flag to replace the env variable. This one is able to control both the number of workers for `jest-haste-map` as well as the transformers. * It makes the transformers run in the parent process if 1 or fewer workers are are specified. This should help with debugging. Once you approve this diff, I will publish a new version of metro to npm and update the version used in RN and remove the use of the env variable altogether: https://our.intern.facebook.com/intern/biggrep/?corpus=xplat&filename=&case=false&view=default&extre=&s=REACT_NATIVE_MAX_WORKERS&engine=apr_strmatch&context=false&filter[uninteresting]=false&filter[intern]=false&filter[test]=false&grep_regex= Note: the process of adding a CLI option is really broken. Commander also has a weird API. We should consider building a better public API for Metro and then consider how to build a new CLI on top of it and simplify our internal integration. I really don't like how Metro is integrated across pieces of the RN cli in ways that is hard to manage. But that is a larger task for another time :) Reviewed By: jeanlauliac Differential Revision: D5217726 fbshipit-source-id: 74efddbb87755a9e744c816fbc62efa21f6a79bf
141 lines
4.4 KiB
JavaScript
141 lines
4.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
const runServer = require('./runServer');
|
|
|
|
import type {RNConfig} from '../core';
|
|
import type {ConfigT} from '../util/Config';
|
|
import type {Args as RunServerArgs} from './runServer';
|
|
|
|
/**
|
|
* Starts the React Native Packager Server.
|
|
*/
|
|
function server(argv: mixed, config: RNConfig, allArgs: Object) {
|
|
const {root, ...args} = allArgs;
|
|
args.projectRoots = args.projectRoots.concat(root);
|
|
|
|
const startedCallback = logReporter => {
|
|
logReporter.update({
|
|
type: 'initialize_packager_started',
|
|
port: args.port,
|
|
projectRoots: args.projectRoots,
|
|
});
|
|
|
|
process.on('uncaughtException', error => {
|
|
logReporter.update({
|
|
type: 'initialize_packager_failed',
|
|
port: args.port,
|
|
error,
|
|
});
|
|
|
|
process.exit(11);
|
|
});
|
|
};
|
|
|
|
const readyCallback = logReporter => {
|
|
logReporter.update({
|
|
type: 'initialize_packager_done',
|
|
});
|
|
};
|
|
|
|
/* $FlowFixMe: we would have either to invariant() everything, or to
|
|
* auto-generate CLI args Flow types. */
|
|
const runServerArgs: RunServerArgs = args;
|
|
/* $FlowFixMe: ConfigT shouldn't be extendable. */
|
|
const configT: ConfigT = config;
|
|
runServer(runServerArgs, configT, startedCallback, readyCallback);
|
|
}
|
|
|
|
module.exports = {
|
|
name: 'start',
|
|
func: server,
|
|
description: 'starts the webserver',
|
|
options: [{
|
|
command: '--port [number]',
|
|
default: 8081,
|
|
parse: (val: string) => Number(val),
|
|
}, {
|
|
command: '--host [string]',
|
|
default: '',
|
|
}, {
|
|
command: '--root [list]',
|
|
description: 'add another root(s) to be used by the packager in this project',
|
|
parse: (val: string) => val.split(',').map(root => path.resolve(root)),
|
|
default: [],
|
|
}, {
|
|
command: '--projectRoots [list]',
|
|
description: 'override the root(s) to be used by the packager',
|
|
parse: (val: string) => val.split(','),
|
|
default: (config: ConfigT) => config.getProjectRoots(),
|
|
}, {
|
|
command: '--assetExts [list]',
|
|
description: 'Specify any additional asset extensions to be used by the packager',
|
|
parse: (val: string) => val.split(','),
|
|
default: (config: ConfigT) => config.getAssetExts(),
|
|
}, {
|
|
command: '--sourceExts [list]',
|
|
description: 'Specify any additional source extensions to be used by the packager',
|
|
parse: (val: string) => val.split(','),
|
|
default: (config: ConfigT) => config.getSourceExts(),
|
|
}, {
|
|
command: '--platforms [list]',
|
|
description: 'Specify any additional platforms to be used by the packager',
|
|
parse: (val: string) => val.split(','),
|
|
default: (config: ConfigT) => config.getPlatforms(),
|
|
}, {
|
|
command: '--providesModuleNodeModules [list]',
|
|
description: 'Specify any npm packages that import dependencies with providesModule',
|
|
parse: (val: string) => val.split(','),
|
|
default: (config: RNConfig) => {
|
|
if (typeof config.getProvidesModuleNodeModules === 'function') {
|
|
return config.getProvidesModuleNodeModules();
|
|
}
|
|
return null;
|
|
},
|
|
}, {
|
|
command: '--max-workers [number]',
|
|
description: 'Specifies the maximum number of workers the worker-pool ' +
|
|
'will spawn for transforming files. This defaults to the number of the ' +
|
|
'cores available on your machine.',
|
|
parse: (workers: string) => Number(workers),
|
|
}, {
|
|
command: '--skipflow',
|
|
description: 'Disable flow checks'
|
|
}, {
|
|
command: '--nonPersistent',
|
|
description: 'Disable file watcher'
|
|
}, {
|
|
command: '--transformer [string]',
|
|
description: 'Specify a custom transformer to be used'
|
|
}, {
|
|
command: '--reset-cache, --resetCache',
|
|
description: 'Removes cached files',
|
|
}, {
|
|
command: '--custom-log-reporter-path, --customLogReporterPath [string]',
|
|
description: 'Path to a JavaScript file that exports a log reporter as a replacement for TerminalReporter',
|
|
}, {
|
|
command: '--verbose',
|
|
description: 'Enables logging',
|
|
}, {
|
|
command: '--https',
|
|
description: 'Enables https connections to the server',
|
|
}, {
|
|
command: '--key [path]',
|
|
description: 'Path to custom SSL key',
|
|
}, {
|
|
command: '--cert [path]',
|
|
description: 'Path to custom SSL cert',
|
|
}],
|
|
};
|