This plugin is converts JavaScript chunks into Hermes bytecode for production-level performance optimization. It also converts related source maps to be compatible with bytecode bundles.
If you enable Hermes in your project, your index.bundle
file and it's source-map will be transformed by react-native
.
You should exclude it from the plugin to avoid processing it twice.
This plugin will only transform assets that are emitted after the compilation. To ensure that asset is always emitted we disable the compareBeforeEmit
option which is enabled by default in Rspack/webpack.
compareBeforeEmit
option is used to skip emitting assets that are identical to the
ones present in build directory, which might result in transformation being
skipped when there is a untransformed bundle present in the build directory.
Since this plugin is only meant to be used as a production-level optimization, it should not affect your development experience.
boolean
true
Use this to enable or disable the plugin. You should only enable this plugin when building for production environment.
string[] | RegExp | RegExp[]
true
Matches all modules that match this resource, and will match against Resource (the absolute path without query and fragment).
string[] | RegExp | RegExp[]
undefined
Matches all modules that match this condition against the absolute path of the resource (without query and fragment).
string[] | RegExp | RegExp[]
undefined
Excludes all modules that match this condition and will match against the absolute path of the resource (without query and fragment).
string
undefined
Path to the Hermes command-line tool. If not specified, the plugin will try to find it automatically.
string
undefined
Use this to specify the path to the React Native package. If not specified, the plugin will try to find it automatically.
boolean
undefined
Use this to force enable compareBeforeEmit
Rspack/webpack's output option.