Plugin
插件:该选项自定义构建流程。
- 类型:
Array<RspackPluginInstance | RspackPluginFunction | RspackBuiltinPlugin>
- 默认值:
[]
外部插件
使用 JavaScript 编写,兼容部分 webpack 社区中的插件。
RspackPluginInstance
interface RspackPluginInstance {
apply(compiler: Compiler): void;
}
其中,Compiler 上提供的接口可以参考 Plugin API。
用法:
rspack.config.js
class CustomPlugin {
apply(compiler) {
// some operations
}
}
module.exports = {
plugins: [new CustomPlugin()],
};
RspackPluginFunction
type RspackPluginFunction = (compiler: Compiler) => void;
用法:
rspack.config.js
function customPlugin(compiler) {
// some operations
}
module.exports = {
plugins: [customPlugin],
};
内部插件
集成在 Rspack 内部。
编写配置时可以引入使用:
rspack.config.js
const rspack = require('@rspack/core');
module.exports = {
// ...
plugins: [new rspack.XxxPlugin()],
};
编写插件时可以通过 compiler.webpack.XxxPlugin
使用:
CustomPlugin.js
export class CustomPlugin {
apply(compiler) {
new compiler.webpack.XxxPlugin().apply(compiler);
// ...
}
}
与 webpack 兼容的内部插件
在 webpack 中,这些插件也以内部插件的形式导出
EntryPlugin
在编译时添加一个入口 chunk。
new rspack.EntryPlugin(context, entry, options);
- context
- 类型:
string
- 描述: 入口模块请求的路径会从该 context 路径下进行 resolve
- entry
- options
type EntryOptions = {
name?: string;
runtime?: EntryRuntime;
chunkLoading?: ChunkLoading;
asyncChunks?: boolean;
publicPath?: PublicPath;
baseUri?: string;
filename?: Filename;
};
DefinePlugin
此插件将会在编译时将代码中的变量替换为其他值或表达式。
new rspack.DefinePlugin(options);
- options
- 类型:
Record<string, string | boolean | undefined>
当使用以下配置时:
rspack.config.js
const rspack = require('@rspack/core');
module.exports = {
plugins: [
new rspack.DefinePlugin({
'process.env.NODE_ENV': "'development'",
TRUE: true,
TRUE_STRING: 'true',
UNDEFINED: undefined,
UNDEFINED_STRING: 'undefined',
}),
],
};
输入代码:
if (process.env.NODE_ENV === 'development') {
console.log('run in development mode');
}
console.log(TRUE === TRUE_STRING);
console.log(UNDEFINED === UNDEFINED_STRING);
输出代码:
if ('development' === 'development') {
console.log('run in development mode');
}
fetch('/api/test');
console.log(true === true);
console.log(undefined === undefined);
ProvidePlugin
此插件会自动的将全局变量转换为模块导入。
new rspack.ProvidePlugin(options);
- options
- 类型:
Record<string, string | string[]>
如下配置:
const rspack = require('@rspack/core');
module.exports = {
plugins: [
new rspack.ProvidePlugin({
process: [require.resolve('process/browser')],
}),
],
};
将如下代码:
console.log(process.version);
转换为:
import process from 'process/browser';
console.log(process.version);
BannerPlugin
new rspack.BannerPlugin(options);
在每个生成的 chunk 顶部或尾部添加一段指定的内容。
-
options
type BannerContent = string;
type BannerRules = string | RegExp | Array<string | RegExp>;
type BannerPluginOptions = {
banner: BannerContent;
entryOnly?: boolean;
footer?: boolean;
raw?: boolean;
test?: BannerRules;
include?: BannerRules;
exclude?: BannerRules;
};
export type BannerPluginArgument = BannerContent | BannerPluginOptions;
名称 | 类型 | 默认值 | 描述 |
---|
banner | string | undefined | 指定 banner 内容(会被包裹成注释) |
entryOnly | boolean|undefined | undefined | 如果值为 true,将只在入口 chunks 文件中添加 |
footer | boolean|undefined | undefined | 如果值为 true,banner 将会位于编译结果的最下方 |
raw | boolean|undefined | undefined | 如果值为 true,将直接输出,不会被作为注释 |
test | BannerRules|undefined | undefined | 包含所有匹配的模块 |
include | BannerRules|undefined | undefined | 根据条件匹配指定的模块 |
exclude | BannerRules|undefined | undefined | 根据条件排除指定的模块 |
为每个 chunk 文件头部或底部添加 banner。
rspack.config.js
module.exports = {
plugins: [
new rspack.BannerPlugin({
banner: 'hello world',
footer: true,
}),
],
};
HotModuleReplacementPlugin
此插件用来添加热模块更新功能,添加后会在产物中加入热更所需的运行时模块。
new rspack.HotModuleReplacementPlugin();
ProgressPlugin
此插件可以用来配置进度条。
new rspack.ProgressPlugin(options);
- options
- 类型:
{ prefix?: string }
- 默认值:
{}
名称 | 类型 | 默认值 | 描述 |
---|
prefix | string | 'Rspack' | 进度条前显示文案 |
ExternalsPlugin
此插件可以用来添加外部依赖。
new rspack.ExternalsPlugin(type, externals);
SourceMapDevToolPlugin
本插件实现了对 source map 生成内容进行更细粒度的控制。它也可以根据 devtool
配置选项的某些设置来自动启用。
new rspack.SourceMapDevToolPlugin(options);
Options
test
(string
RegExp
[string, RegExp]
):包含基于扩展名的模块的 source map(默认是 .js, .mjs 和 .css)。
include
(string
RegExp
[string, RegExp]
):使路径与该值匹配的模块生成 source map。
exclude
(string
RegExp
[string, RegExp]
):使匹配该值的模块不生成 source map。
filename
(string
):定义生成的 SourceMap 的名称(不设置将默认置为 inlined)。
append
(string
function
):在原始资源后追加给定值。通常是 #sourceMappingURL 注释。[url] 被替换成 source map 文件的 URL。支持 path 参数:[chunk]、[filename] 和 [contenthash]。设置 append 为 false 会禁止追加。
moduleFilenameTemplate(string)
:详见 output.devtoolModuleFilenameTemplate
。
fallbackModuleFilenameTemplate
(string
):详见上面的链接。
namespace
(string
):详见 output.devtoolNamespace
.
module = true
(boolean
):表示 loader 是否生成 source map。
columns = true
(boolean
):表示是否应该使用 column mapping。
noSources = false
(boolean
):防止源文件的内容被包含在 source map 中。
publicPath
(string
):生成带 public path 前缀的绝对 URL,例如:https://example.com/project/。
fileContext
(string
):使得 [file] 参数作为本目录的相对路径。
sourceRoot
(string
):给 SourceMap 中的 sourceRoot 属性提供一个自定义值。
示例
下面的示例展示了本插件的一些常见用例。
基本使用
你可以使用以下代码将配置项 devtool: inline-source-map 替换为等效的自定义插件配置:
module.exports = {
// ...
devtool: false,
plugins: [new rspack.SourceMapDevToolPlugin({})],
};
排除 Vendor Maps
以下代码会排除 vendor.js bundle 内模块的 source map。
new rspack.SourceMapDevToolPlugin({
filename: '[file].map[query]',
exclude: ['vendor.js'],
});
在宿主环境外部化 source map
设置 source map 的 URL。在宿主环境需要授权的情况下很有用。
new rspack.SourceMapDevToolPlugin({
append: '\n//# sourceMappingURL=https://example.com/sourcemap/[url]',
filename: '[file].map[query]',
});
还有一种场景,source map 存储在上层目录中时:
project
|- dist
|- public
|- bundle-[hash].js
|- sourcemaps
|- bundle-[hash].js.map
如下设置:
new rspack.SourceMapDevToolPlugin({
filename: 'sourcemaps/[file].map',
publicPath: 'https://example.com/project/',
fileContext: 'public',
});
将会生成以下 URL:
https://example.com/project/sourcemaps/bundle-[hash].js.map
node.NodeTargetPlugin
此插件用来在打包时将 Node.js 的内置模块外置掉,externalsPresets.node
底层使用了该插件。
new rspack.node.NodeTargetPlugin();
node.NodeTemplatePlugin
此插件用来打包出 Node.js 的产物,经常配合 childCompiler 一起使用。
new rspack.node.NodeTemplatePlugin();
javascript.EnableChunkLoadingPlugin
开启该 chunkLoadingType 的运行时模块打包,output.enabledChunkLoadingTypes 底层使用了该插件。
new rspack.javascript.EnableChunkLoadingPlugin('import');
library.EnableLibraryPlugin
开启该 libraryType 的产物格式打包,output.enabledLibraryTypes 底层使用了该插件。
new rspack.library.EnableLibraryPlugin('var');
wasm.EnableWasmLoadingPlugin
开启该 wasmLoadingType 的运行时模块打包,output.enabledWasmLoadingTypes 底层使用了该插件。
new rspack.library.EnableWasmLoadingPlugin('fetch');
electron.ElectronTargetPlugin
此插件用来在打包时将 Electron 的内置模块外置掉,externalsPresets.electron
、externalsPresets.electronMain
、externalsPresets.electronRenderer
和 externalsPresets.electronPreload
底层使用了该插件。
new rspack.electron.ElectronTargetPlugin();
container.ModuleFederationPlugin
该插件实现了 Module Federation 1.5。
-
implementation
-
runtimePlugins
- 类型:
string[]
- 作用:传入 Module Federation 1.5 运行时所需的插件,插件可以对 Module Federation 的行为与能力进行扩展。
-
name
- 类型:
string
- 作用:定义当前构建中暴露给其他应用的唯一名称。此名称将作为远程应用的全局变量存在。
-
filename
- 类型:
string
- 作用:指定远程应用入口文件的名称。其他应用将通过该文件加载暴露的模块。
-
runtime
- 类型:
string | false
- 作用:定义远程应用入口的 runtime chunk。
-
library
-
shareScope
- 类型:
string
- 作用:定义当前应用共享依赖的命名空间。通过在不同的应用之间配置命名空间,可以控制模块的共享行为,包括确定哪些模块在不同的应用之间是共享的。默认的命名空间为
"default"
。
-
remoteType
-
remotes
- 类型:
type Remotes = (RemotesItem | RemotesObject)[] | RemotesObject;
type RemotesItem = string;
type RemotesItems = RemotesItem[];
interface RemotesObject {
[k: string]: RemotesConfig | RemotesItem | RemotesItems;
}
interface RemotesConfig {
external: RemotesItem | RemotesItems;
shareScope?: string;
}
- 作用:定义将要从远程加载的模块及其地址。键是远程应用的名称,值是远程应用暴露的全局变量名和远程应用入口的 URL。你也可以指定
shareScope
来控制远程应用是否共享依赖。
-
exposes
- 类型:
type Exposes = (ExposesItem | ExposesObject)[] | ExposesObject;
type ExposesItem = string;
type ExposesItems = ExposesItem[];
interface ExposesObject {
[k: string]: ExposesConfig | ExposesItem | ExposesItems;
}
interface ExposesConfig {
import: ExposesItem | ExposesItems;
name?: string;
}
- 作用:定义本地模块如何被远程应用引用。键是该模块在远程应用中作为远程模块引用时的名称,值是相对于当前文件夹的模块路径。你可以提供
name
来指定被暴露的本地模块的名称。
-
shared
container.ModuleFederationPluginV1
该插件对应 Module Federation 1.0,即 Webpack 中的 ModuleFederationPlugin。
配置与上面 ModuleFederationPlugin 配置一致,除了没有 implementation
和 runtimePlugins
两个字段。
Rspack 独有的内部插件
这些插件是 Rspack 独有的内部插件,遵循 XxxRspackPlugin 的命名方式。
HtmlRspackPlugin
此插件可以创建与 Rspack 产物关联的 html 文件。
new rspack.HtmlRspackPlugin(options);
-
options
type HtmlRspackPluginOptions = {
title?: string;
filename?: string;
template?: string;
templateContent?: string;
templateParameters?: Record<string, string>;
inject?: 'head' | 'body';
publicPath?: string;
scriptLoading?: 'blocking' | 'defer' | 'module';
chunks?: string[];
excludedChunks?: string[];
sri?: 'sha256' | 'sha384' | 'sha512';
minify?: boolean;
favicon?: string;
meta?: Record<string, string | Record<string, string>>;
};
名称 | 类型 | 默认值 | 描述 |
---|
title | string|undefined | undefined | 构建 html 的标题 |
filename | string | 'index.html' | 输出的文件名,可以指定子目录,例如 pages/index.html |
template | string|undefined | undefined | 模版文件路径,支持 ejs |
templateContent | string|undefined | undefined | 模版文件内容,优先级大于 template |
templateParameters | Record<string, string> | {} | 传递给模版的参数 |
inject | 'head'|'body'|undefined | undefined | 产物注入位置 |
publicPath | string | '' | script 和 link 标签的 publicPath |
scriptLoading | 'blocking'|'defer'|'module' | 'defer' | 现代浏览器支持使用 defer 来异步加载 js,设置为 module 则会添加 type="module" 同时使用 defer |
chunks | string[]|undefined | undefined | 配置需要注入的 chunk,默认注入所有 chunk |
excludedChunks | string[]|undefined | undefined | 配置需要跳过注入的 chunk |
sri | 'sha256'|'sha384'|'sha512'|undefined | undefined | sri hash 算法,默认不开启 sri |
minify | boolean | false | 是否启用压缩 |
favicon | string|undefined | undefined | 配置 html 图标 |
meta | Record<string, string|Record<string, string>> | {} | 配置需要注入 html 的 meta |
SwcJsMinimizerRspackPlugin
此插件可以用来压缩 JS 产物。
new rspack.SwcJsMinimizerRspackPlugin(options);
-
options
如需获取配置项的更多信息,请点击这里.
type SwcJsMinimizerRspackPluginOptions = {
/**
* @deprecated Deprecated, move to `compress.passes`
*/
passes?: number;
/**
* @deprecated Deprecated, move to `compress.drop_console`
*/
dropConsole?: boolean;
/**
* @deprecated Deprecated, move to `compress.pure_funcs`
*/
pureFuncs?: Array<string>;
/**
* @deprecated Deprecated, move to `mangle.keep_classnames`
*/
keepClassNames?: boolean;
/**
* @deprecated Deprecated, move to `mangle.keep_fnames`
*/
keepFnNames?: boolean;
/**
* @deprecated Deprecated, move to `format.comments`
*/
comments?: false | 'all' | 'some';
/**
* @deprecated Deprecated, move to `format.ascii_only`
*/
asciiOnly?: boolean;
extractComments?: boolean | RegExp;
compress?: TerserCompressOptions | boolean;
mangle?: TerserMangleOptions | boolean;
format?: JsFormatOptions & ToSnakeCaseProperties<JsFormatOptions>;
test?: MinifyConditions;
exclude?: MinifyConditions;
include?: MinifyConditions;
};
type MinifyCondition = string | RegExp;
type MinifyConditions = MinifyCondition | MinifyCondition[];
interface JsFormatOptions {
/**
* Currently noop.
* @default false
* @alias ascii_only
*/
asciiOnly?: boolean;
/**
* Currently noop.
* @default false
*/
beautify?: boolean;
/**
* Currently noop.
* @default false
*/
braces?: boolean;
/**
* - `false`: removes all comments
* - `'some'`: preserves some comments
* - `'all'`: preserves all comments
* @default false
*/
comments?: false | 'some' | 'all';
/**
* Currently noop.
* @default 5
*/
ecma?: TerserEcmaVersion;
/**
* Currently noop.
* @alias indent_level
*/
indentLevel?: number;
/**
* Currently noop.
* @alias indent_start
*/
indentStart?: number;
/**
* Currently noop.
* @alias inline_script
*/
inlineScript?: number;
/**
* Currently noop.
* @alias keep_numbers
*/
keepNumbers?: number;
/**
* Currently noop.
* @alias keep_quoted_props
*/
keepQuotedProps?: boolean;
/**
* Currently noop.
* @alias max_line_len
*/
maxLineLen?: number | false;
/**
* Currently noop.
*/
preamble?: string;
/**
* Currently noop.
* @alias quote_keys
*/
quoteKeys?: boolean;
/**
* Currently noop.
* @alias quote_style
*/
quoteStyle?: boolean;
/**
* Currently noop.
* @alias preserve_annotations
*/
preserveAnnotations?: boolean;
/**
* Currently noop.
*/
safari10?: boolean;
/**
* Currently noop.
*/
semicolons?: boolean;
/**
* Currently noop.
*/
shebang?: boolean;
/**
* Currently noop.
*/
webkit?: boolean;
/**
* Currently noop.
* @alias wrap_iife
*/
wrapIife?: boolean;
/**
* Currently noop.
* @alias wrap_func_args
*/
wrapFuncArgs?: boolean;
}
type TerserEcmaVersion = 5 | 2015 | 2016 | string | number;
interface TerserCompressOptions {
arguments?: boolean;
arrows?: boolean;
booleans?: boolean;
booleans_as_integers?: boolean;
collapse_vars?: boolean;
comparisons?: boolean;
computed_props?: boolean;
conditionals?: boolean;
dead_code?: boolean;
defaults?: boolean;
directives?: boolean;
drop_console?: boolean;
drop_debugger?: boolean;
ecma?: TerserEcmaVersion;
evaluate?: boolean;
expression?: boolean;
global_defs?: any;
hoist_funs?: boolean;
hoist_props?: boolean;
hoist_vars?: boolean;
ie8?: boolean;
if_return?: boolean;
inline?: 0 | 1 | 2 | 3;
join_vars?: boolean;
keep_classnames?: boolean;
keep_fargs?: boolean;
keep_fnames?: boolean;
keep_infinity?: boolean;
loops?: boolean;
negate_iife?: boolean;
passes?: number;
properties?: boolean;
pure_getters?: any;
pure_funcs?: string[];
reduce_funcs?: boolean;
reduce_vars?: boolean;
sequences?: any;
side_effects?: boolean;
switches?: boolean;
top_retain?: any;
toplevel?: any;
typeofs?: boolean;
unsafe?: boolean;
unsafe_passes?: boolean;
unsafe_arrows?: boolean;
unsafe_comps?: boolean;
unsafe_function?: boolean;
unsafe_math?: boolean;
unsafe_symbols?: boolean;
unsafe_methods?: boolean;
unsafe_proto?: boolean;
unsafe_regexp?: boolean;
unsafe_undefined?: boolean;
unused?: boolean;
const_to_let?: boolean;
module?: boolean;
}
interface TerserMangleOptions {
props?: TerserManglePropertiesOptions;
toplevel?: boolean;
keep_classnames?: boolean;
keep_fnames?: boolean;
keep_private_props?: boolean;
ie8?: boolean;
safari10?: boolean;
reserved?: string[];
}
interface TerserManglePropertiesOptions {}
SwcCssMinimizerRspackPlugin
此插件可以用来压缩 CSS 产物。
new rspack.SwcCssMinimizerRspackPlugin();
CopyRspackPlugin
CC 4.0 协议声明本节内容派生于以下链接指向的内容 ,并遵守 CC BY 4.0 许可证的规定。
以下内容如果没有特殊声明,可以认为都是基于原内容的修改和删减后的结果。
将已存在的单个文件或整个目录复制到产物目录。
new rspack.CopyRspackPlugin(options);
-
options
export type CopyRspackPluginOptions = {
patterns: (
| string // 如果传入字符串,会被视作 { from: `你传入的字符串` }
| {
from: string;
to?: string; // 默认根据 from 推断
context?: string; // 默认 Rspack 配置中的 context
toType?: 'dir' | 'file' | 'template'; // 默认根据 from 推断
noErrorOnMissing?: boolean; // 默认 false
force?: boolean; // 默认 false
priority?: number; // 默认 0
globOptions?: {
caseSensitiveMatch?: boolean; // 默认 true
dot?: boolean; // 默认 true
ignore?: string[]; // 忽略特定路径
};
}
)[];
};
名称 | 类型 | 默认值 | 描述 |
---|
from | string | undefined | 复制的源路径,可以是绝对路径、相对路径、glob 查询字符串,可以是文件或目录。若传入相对路径,则是相对于 context 配置。 |
to | string | undefined | 复制的目的地,可以是绝对路径、相对路径或者是 Rspack 的模版字符串,例如 '[name].[hash][ext]' 。当不指定 to 时,则相当于是产物目录。 |
context | string | undefined | 该配置决定怎样匹配 from 路径,以及复制后的结构。 |
toType | 'dir'|'file'|'template' | undefined | 指定 to 的类型,可以是目录,文件或 Rspack 的模版名,若不指定则会自动推断。 |
noErrorOnMissing | boolean | false | 当没有找到对应的文件或目录时,忽略错误。 |
force | boolean | false | 当产物中已经有相应的文件时,是否覆写。 |
priority | number | 0 | 当设置 force 为 true 时,如果匹配到同样的文件,优先级高的会覆写优先级的。 |
globOptions | object | undefined | glob 查询选项,caseSensitiveMatch 决定是否大小写敏感,dot 决定是否匹配以 . 开头的文件,ignore 是 glob 形式的字符串数组,可以使用该配置忽略部分特定路径。 |
示例:
rspack.config.js
const rspack = require('@rspack/core');
module.exports = {
entry: './src/index.js',
plugins: [
new rspack.CopyRspackPlugin({
patterns: [
{
from: 'file.txt',
},
],
}),
],
};
以上面的配置运行结果会是:"dist/file.txt"
。
rspack.config.js
module.exports = {
entry: './src/index.js',
plugins: [
new rspack.CopyRspackPlugin({
patterns: [
{
from: 'directory',
},
],
}),
],
};
以上面的配置运行结果会是 directory
目录下的所有文件平铺在产物目录中。
rspack.config.js
module.exports = {
entry: './src/index.js',
plugins: [
new rspack.CopyRspackPlugin({
patterns: [
{
from: 'directory/**/*',
to: 'newdirectory',
},
],
}),
],
};
以上面的配置运行结果会是 directory
目录被移动到产物目录中的 newdirectory
目录,例如 dist/newdirectory/directory/foo
。