mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Prettier RN local-cli
Reviewed By: yungsters Differential Revision: D7962462 fbshipit-source-id: 0afe2092af8703895de91a6d1400315c3173aa6d
This commit is contained in:
committed by
Facebook Github Bot
parent
680fb50040
commit
aba4ec0c09
@@ -3,68 +3,94 @@
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
module.exports = [
|
||||
{
|
||||
command: '--entry-file <path>',
|
||||
description: 'Path to the root JS file, either absolute or relative to JS root',
|
||||
}, {
|
||||
description:
|
||||
'Path to the root JS file, either absolute or relative to JS root',
|
||||
},
|
||||
{
|
||||
command: '--platform [string]',
|
||||
description: 'Either "ios" or "android"',
|
||||
default: 'ios',
|
||||
}, {
|
||||
},
|
||||
{
|
||||
command: '--transformer [string]',
|
||||
description: 'Specify a custom transformer to be used',
|
||||
}, {
|
||||
},
|
||||
{
|
||||
command: '--dev [boolean]',
|
||||
description: 'If false, warnings are disabled and the bundle is minified',
|
||||
parse: (val) => val === 'false' ? false : true,
|
||||
parse: val => (val === 'false' ? false : true),
|
||||
default: true,
|
||||
}, {
|
||||
},
|
||||
{
|
||||
command: '--minify [boolean]',
|
||||
description: 'Allows overriding whether bundle is minified. This defaults to ' +
|
||||
description:
|
||||
'Allows overriding whether bundle is minified. This defaults to ' +
|
||||
'false if dev is true, and true if dev is false. Disabling minification ' +
|
||||
'can be useful for speeding up production builds for testing purposes.',
|
||||
parse: (val) => val === 'false' ? false : true,
|
||||
}, {
|
||||
parse: val => (val === 'false' ? false : true),
|
||||
},
|
||||
{
|
||||
command: '--bundle-output <string>',
|
||||
description: 'File name where to store the resulting bundle, ex. /tmp/groups.bundle',
|
||||
}, {
|
||||
description:
|
||||
'File name where to store the resulting bundle, ex. /tmp/groups.bundle',
|
||||
},
|
||||
{
|
||||
command: '--bundle-encoding [string]',
|
||||
description: 'Encoding the bundle should be written in (https://nodejs.org/api/buffer.html#buffer_buffer).',
|
||||
description:
|
||||
'Encoding the bundle should be written in (https://nodejs.org/api/buffer.html#buffer_buffer).',
|
||||
default: 'utf8',
|
||||
}, {
|
||||
},
|
||||
{
|
||||
command: '--max-workers [number]',
|
||||
description: 'Specifies the maximum number of workers the worker-pool ' +
|
||||
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: '--sourcemap-output [string]',
|
||||
description: 'File name where to store the sourcemap file for resulting bundle, ex. /tmp/groups.map',
|
||||
}, {
|
||||
description:
|
||||
'File name where to store the sourcemap file for resulting bundle, ex. /tmp/groups.map',
|
||||
},
|
||||
{
|
||||
command: '--sourcemap-sources-root [string]',
|
||||
description: 'Path to make sourcemap\'s sources entries relative to, ex. /root/dir',
|
||||
}, {
|
||||
description:
|
||||
"Path to make sourcemap's sources entries relative to, ex. /root/dir",
|
||||
},
|
||||
{
|
||||
command: '--sourcemap-use-absolute-path',
|
||||
description: 'Report SourceMapURL using its full path',
|
||||
default: false,
|
||||
}, {
|
||||
},
|
||||
{
|
||||
command: '--assets-dest [string]',
|
||||
description: 'Directory name where to store assets referenced in the bundle',
|
||||
}, {
|
||||
description:
|
||||
'Directory name where to store assets referenced in the bundle',
|
||||
},
|
||||
{
|
||||
command: '--verbose',
|
||||
description: 'Enables logging',
|
||||
default: false,
|
||||
}, {
|
||||
},
|
||||
{
|
||||
command: '--reset-cache',
|
||||
description: 'Removes cached files',
|
||||
default: false,
|
||||
}, {
|
||||
},
|
||||
{
|
||||
command: '--read-global-cache',
|
||||
description: 'Try to fetch transformed JS code from the global cache, if configured.',
|
||||
description:
|
||||
'Try to fetch transformed JS code from the global cache, if configured.',
|
||||
default: false,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user