forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
130 lines (125 loc) · 3.77 KB
/
server.js
File metadata and controls
130 lines (125 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
'use strict';
const runServer = require('./runServer');
import type {RNConfig} from '../core';
/* $FlowFixMe(site=react_native_oss) */
import type {ConfigT} from 'metro-config/src/configTypes.flow';
import type {Args as RunServerArgs} from './runServer';
/**
* Starts the React Native Packager Server.
*/
function server(argv: mixed, config: RNConfig, args: RunServerArgs) {
/* $FlowFixMe(site=react_native_fb) ConfigT shouldn't be extendable. */
const configT: ConfigT = config;
runServer(args, configT);
}
module.exports = {
name: 'start',
func: server,
description: 'starts the webserver',
options: [
{
command: '--port [number]',
parse: (val: string) => Number(val),
default: (config: ConfigT) => config.server.port,
},
{
command: '--host [string]',
default: '',
},
{
command: '--projectRoot [string]',
description: 'Specify the main project root',
default: (config: ConfigT) => config.projectRoot,
},
{
command: '--watchFolders [list]',
description:
'Specify any additional folders to be added to the watch list',
parse: (val: string) => val.split(','),
default: (config: ConfigT) => config.watchFolders,
},
{
command: '--assetExts [list]',
description:
'Specify any additional asset extensions to be used by the packager',
parse: (val: string) => val.split(','),
default: (config: ConfigT) => config.resolver.assetExts,
},
{
command: '--sourceExts [list]',
description:
'Specify any additional source extensions to be used by the packager',
parse: (val: string) => val.split(','),
default: (config: ConfigT) => config.resolver.sourceExts,
},
{
command: '--platforms [list]',
description:
'Specify any additional platforms to be used by the packager',
parse: (val: string) => val.split(','),
default: (config: ConfigT) => config.resolver.platforms,
},
{
command: '--providesModuleNodeModules [list]',
description:
'Specify any npm packages that import dependencies with providesModule',
parse: (val: string) => val.split(','),
default: (config: ConfigT) => config.resolver.providesModuleNodeModules,
},
{
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.',
default: (config: ConfigT) => config.maxWorkers,
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',
},
],
};