We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
久等了,本应上周五发的更新日志,现在才来。话不多说,开始正题。
loader
this.exec
module-methods
package.json
module
commonjs
module-variables
import.meta.url
file:
import.meta.webpack
webpack
webpack.config.js
experiments
mjs
asset
resolve.fullySpecified
errorsCount
warningsCount
output.futureEmitAssets
emit
output.wasmLoading
target
output.enabledWasmLoadingTypes
externalsPresets
ps: 近期官方对 output 改动较多,而且很频繁。output 中新增了很多选项。建议 v5 上了之后重新过一遍 output 的文档。
terser-webpack-plugin
targetOption
minify
asset-management
type
thread-loader
webpack-contrib/stylus-loader
webpack 最近更新频繁,v5 发布在即。今晨发布了 5.0.0-rc.1 版本,大家敬请期待。
中文文档目前与官方文档同步更新中,时差不会大于一周。请大家认准 webpack 中文官网 https://webpack.docschina.org。
https://webpack.docschina.org
The text was updated successfully, but these errors were encountered:
No branches or pull requests
英文篇
内容更新
API
loader
中移除了对this.exec
的说明module-methods
中新增了 webpack 对模块一致性检查的说明,可在package.json
中设置值为module
或commonjs
的 type 字段,用于对编译时的语法进行一致性检查(针对 es6 与 commonjs 混用的情况)module-variables
中新增了两项:import.meta.url
用于获取模块的绝对路径(以file:
开头)import.meta.webpack
用于获取当前webpack
的版本配置
webpack.config.js
中experiments
的mjs
字段和asset
字段resolve.fullySpecified
的选项,用于模块一致性检查。当在代码中引入模块时,是否需要编写后缀名。errorsCount
和warningsCount
的字段,用于判断是否返回 error 或 warning 的计数。output.futureEmitAssets
选项用于让 webpack 使用未来版本的emit
逻辑,在emit
完成后释放资源文件内存。(此选项将在 v5 中移除,并默认支持)output.wasmLoading
选项用于配置 webpack 加载 wasm 模块的方式,并且会根据target
的不同而变化output.enabledWasmLoadingTypes
选项用于配置 webpack 入口所支持的 wasm 加载方式的列表。externalsPresets
选项插件
terser-webpack-plugin
中新增了targetOption
的选项,可以声明自定义的配置项,在minify
函数中使用。指南
asset-management
(资源管理)对type
为 json 的资源可启用自定义 parser 进行了说明loader
thread-loader
的说明,此 loader 仅在有耗时操作时使用站点更新
webpack-contrib/stylus-loader
的文档中文站
内容更新
总结
webpack
最近更新频繁,v5 发布在即。今晨发布了 5.0.0-rc.1 版本,大家敬请期待。中文文档目前与官方文档同步更新中,时差不会大于一周。请大家认准 webpack 中文官网
https://webpack.docschina.org
。The text was updated successfully, but these errors were encountered: