@wordpress/browserslist-config 是 WordPress 提供的可共享 Browserslist 配置包,用于定义项目支持的浏览器范围。它作为 Gutenberg 项目的一部分,通过 npm 发布,便于开发者在构建工具中统一浏览器兼容性设置。
WordPress Browserslist shareable config for Browserslist.
Install the module
$ npm install browserslist @wordpress/browserslist-config --save-dev
Note: This package requires Node.js version with long-term support status (check Active LTS or Maintenance LTS releases). It is not compatible with older versions.
Add this to your package.json file:
"browserslist": [
"extends @wordpress/browserslist-config"
]
Alternatively, add this to .browserslistrc file:
extends @wordpress/browserslist-config
This package when imported returns an array of supported browsers, for more configuration examples including Autoprefixer, Babel, ESLint, PostCSS, and stylelint see the Browserslist examples repo.
This is an individual package that’s part of the Gutenberg project. The project is organized as a monorepo. It’s made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to npm and used by WordPress as well as other software projects.
To find out more about contributing to this package or Gutenberg as a whole, please read the project’s main contributor guide.