forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor CLI command entry points (facebook#39075)
Summary: Pull Request resolved: facebook#39075 Small refactor: reorganise command entry points and types into a consistent pattern. Changelog: [Internal] Reviewed By: blakef Differential Revision: D48433284 fbshipit-source-id: a5654143686af6df726a6906586771d153e11b7a
- Loading branch information
1 parent
52fce12
commit 2055294
Showing
8 changed files
with
182 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
packages/community-cli-plugin/src/commands/bundle/bundle.js
This file was deleted.
Oops, something went wrong.
129 changes: 0 additions & 129 deletions
129
packages/community-cli-plugin/src/commands/bundle/bundleCommandLineArgs.js
This file was deleted.
Oops, something went wrong.
120 changes: 120 additions & 0 deletions
120
packages/community-cli-plugin/src/commands/bundle/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/** | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow strict-local | ||
* @format | ||
* @oncall react_native | ||
*/ | ||
|
||
import type {Command} from '@react-native-community/cli-types'; | ||
|
||
import path from 'path'; | ||
import buildBundle from './buildBundle'; | ||
|
||
export type {BundleCommandArgs} from './buildBundle'; | ||
|
||
const bundleCommand: Command = { | ||
name: 'bundle', | ||
description: 'Build the bundle for the provided JavaScript entry file.', | ||
func: buildBundle, | ||
options: [ | ||
{ | ||
name: '--entry-file <path>', | ||
description: | ||
'Path to the root JS file, either absolute or relative to JS root', | ||
}, | ||
{ | ||
name: '--platform <string>', | ||
description: 'Either "ios" or "android"', | ||
default: 'ios', | ||
}, | ||
{ | ||
name: '--transformer <string>', | ||
description: 'Specify a custom transformer to be used', | ||
}, | ||
{ | ||
name: '--dev [boolean]', | ||
description: 'If false, warnings are disabled and the bundle is minified', | ||
parse: (val: string): boolean => val !== 'false', | ||
default: true, | ||
}, | ||
{ | ||
name: '--minify [boolean]', | ||
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: string): boolean => val !== 'false', | ||
}, | ||
{ | ||
name: '--bundle-output <string>', | ||
description: | ||
'File name where to store the resulting bundle, ex. /tmp/groups.bundle', | ||
}, | ||
{ | ||
name: '--bundle-encoding <string>', | ||
description: | ||
'Encoding the bundle should be written in (https://nodejs.org/api/buffer.html#buffer_buffer).', | ||
default: 'utf8', | ||
}, | ||
{ | ||
name: '--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 => Number(workers), | ||
}, | ||
{ | ||
name: '--sourcemap-output <string>', | ||
description: | ||
'File name where to store the sourcemap file for resulting bundle, ex. /tmp/groups.map', | ||
}, | ||
{ | ||
name: '--sourcemap-sources-root <string>', | ||
description: | ||
"Path to make sourcemap's sources entries relative to, ex. /root/dir", | ||
}, | ||
{ | ||
name: '--sourcemap-use-absolute-path', | ||
description: 'Report SourceMapURL using its full path', | ||
default: false, | ||
}, | ||
{ | ||
name: '--assets-dest <string>', | ||
description: | ||
'Directory name where to store assets referenced in the bundle', | ||
}, | ||
{ | ||
name: '--unstable-transform-profile <string>', | ||
description: | ||
'Experimental, transform JS for a specific JS engine. Currently supported: hermes, hermes-canary, default', | ||
default: 'default', | ||
}, | ||
{ | ||
name: '--asset-catalog-dest [string]', | ||
description: 'Path where to create an iOS Asset Catalog for images', | ||
}, | ||
{ | ||
name: '--reset-cache', | ||
description: 'Removes cached files', | ||
default: false, | ||
}, | ||
{ | ||
name: '--read-global-cache', | ||
description: | ||
'Try to fetch transformed JS code from the global cache, if configured.', | ||
default: false, | ||
}, | ||
{ | ||
name: '--config <string>', | ||
description: 'Path to the CLI configuration file', | ||
parse: (val: string): string => path.resolve(val), | ||
}, | ||
], | ||
}; | ||
|
||
export default bundleCommand; |
Oops, something went wrong.