bundle
or webpack-bundle
is a command-line tool that builds the bundle for the provided project.
In the root of an existing project, run this command in your terminal of choice:
To stay compatible with the @react-native-community/cli
command, the following flags are included but are not functional:
--config-cmd
--entry-file
string
Path to the root JS file, either absolute or relative to JS root.
--platform
string
"ios"
Either "ios" or "android".
--dev
boolean
true
Enables development warnings and disables production optimizations.
--minify
boolean
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.
--bundle-output
string
File name where to store the resulting bundle, ex. /tmp/groups.bundle.
--sourcemap-output
string
File name where to store the sourcemap file for resulting bundle, ex. /tmp/groups.map.
--assets-dest
string
Directory name where to store assets referenced in the bundle.
--json
string
Stores stats in a file.
--stats
string
Instructs Rspack on how to treat the stats. Use with --json
to store stats in a file.
'errors-only'
- only output when errors happen'errors-warnings'
- only output errors and warnings happen'minimal'
- only output when errors or new compilation happen'none'
- output nothing'normal'
- standard output'verbose'
- output everything'detailed'
- output everything except chunkModules and chunkRootModules'summary'
- output webpack version, warnings count and errors countExample:
More details: Rspack documentation
--reset-cache
boolean
Resets the transformation cache.
--verbose
boolean
Enables verbose logging.
--watch
boolean
false
Watch for file changes.
--config
string
Path to a bundler config file, e.g rspack.config.js.
--webpackConfig
string
--config
insteadPath to a bundler config file, e.g webpack.config.js.
-h
,--help
Display help for command.