mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
b80e2c8799
Summary: This PR depends on #13172 Packager events are mostly logged through the TerminalReporter by default (#13172 makes this configurable). But there are a few things that aren't passed through TerminalReporter. - We [log a banner with some information about the port and what's going on](8c7b32d5f1/local-cli/server/server.js (L22-L32)
) - Also [a message about looking for JS files](8c7b32d5f1/local-cli/server/server.js (L34-L38)
) (not sure what that is for / if it is useful beyond telling the user what directory root they started the packager in, but that's another thing). - If the packager fails to start, then [we log an error message](8c7b32d5f1/local-cli/server/server.js (L41-L61)
). This pull request changes those log messages to be handled by TerminalReporter. I tri Closes https://github.com/facebook/react-native/pull/13209 Differential Revision: D4809759 Pulled By: davidaurelio fbshipit-source-id: 2c427ec0c1accaf54bf6b2d1da882cd6bfaa7829
108 lines
3.1 KiB
JavaScript
108 lines
3.1 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.
|
|
*/
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
const runServer = require('./runServer');
|
|
|
|
/**
|
|
* Starts the React Native Packager Server.
|
|
*/
|
|
function server(argv, config, args) {
|
|
args.projectRoots = args.projectRoots.concat(args.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',
|
|
});
|
|
};
|
|
|
|
runServer(args, config, startedCallback, readyCallback);
|
|
}
|
|
|
|
module.exports = {
|
|
name: 'start',
|
|
func: server,
|
|
description: 'starts the webserver',
|
|
options: [{
|
|
command: '--port [number]',
|
|
default: 8081,
|
|
parse: (val) => 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) => val.split(',').map(root => path.resolve(root)),
|
|
default: [],
|
|
}, {
|
|
command: '--projectRoots [list]',
|
|
description: 'override the root(s) to be used by the packager',
|
|
parse: (val) => val.split(','),
|
|
default: (config) => config.getProjectRoots(),
|
|
}, {
|
|
command: '--assetExts [list]',
|
|
description: 'Specify any additional asset extentions to be used by the packager',
|
|
parse: (val) => val.split(','),
|
|
default: (config) => config.getAssetExts(),
|
|
}, {
|
|
command: '--platforms [list]',
|
|
description: 'Specify any additional platforms to be used by the packager',
|
|
parse: (val) => val.split(','),
|
|
default: (config) => config.getPlatforms(),
|
|
}, {
|
|
command: '--providesModuleNodeModules [list]',
|
|
description: 'Specify any npm packages that import dependencies with providesModule',
|
|
parse: (val) => val.split(','),
|
|
default: (config) => {
|
|
if (typeof config.getProvidesModuleNodeModules === 'function') {
|
|
return config.getProvidesModuleNodeModules();
|
|
}
|
|
return null;
|
|
},
|
|
}, {
|
|
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',
|
|
}],
|
|
};
|