Skip to content

Commit

Permalink
docs: list plugin compatible +5 (#7481)
Browse files Browse the repository at this point in the history
  • Loading branch information
9aoy authored Aug 7, 2024
1 parent 7b9117f commit 2145af4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
28 changes: 28 additions & 0 deletions website/components/CommunityCompatibleTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,34 @@ export const CommunityPluginCompatibleTable: React.FC = () => {
url: 'https://www.npmjs.com/package/friendly-errors-webpack-plugin',
status: CompatibleStatus.Compatible,
},
{
name: '@nx/webpack',
url: 'https://www.npmjs.com/package/@nx/webpack',
status: CompatibleStatus.Alternative,
description: i18n[lang]['@nx/webpack-desc'],
},
{
name: 'webpack-filter-warnings-plugin',
url: 'https://github.com/mattlewis92/webpack-filter-warnings-plugin',
status: CompatibleStatus.NotCompatible,
description: i18n[lang]['webpack-filter-warnings-plugin-desc'],
},
{
name: 'speed-measure-webpack-plugin',
url: 'https://www.npmjs.com/package/speed-measure-webpack-plugin',
status: CompatibleStatus.NotCompatible,
description: i18n[lang]['speed-measure-webpack-plugin-desc'],
},
{
name: 'circular-dependency-plugin',
url: 'https://github.com/aackerman/circular-dependency-plugin',
status: CompatibleStatus.NotCompatible,
},
{
name: 'error-overlay-webpack-plugin',
url: 'https://github.com/gregberge/error-overlay-webpack-plugin',
status: CompatibleStatus.Compatible,
},
{
name: 'webpackbar',
url: 'https://www.npmjs.com/package/webpackbar',
Expand Down
5 changes: 4 additions & 1 deletion website/components/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@
"webpack-virtual-modules-desc": "Use [rspack-plugin-virtual-module](https://github.com/rspack-contrib/rspack-plugins/tree/main/packages/plugin-virtual-module) instead",
"webpack-manifest-plugin-desc": "Use [rspack-manifest-plugin](https://github.com/rspack-contrib/rspack-manifest-plugin) instead",
"workbox-webpack-plugin-desc": "Use [@aaroon/workbox-rspack-plugin](https://github.com/Clarkkkk/workbox-rspack-plugin) instead",
"react-refresh-webpack-plugin-desc": "Use [@rspack/plugin-react-refresh](/guide/tech/react#rspackplugin-react-refresh) instead"
"react-refresh-webpack-plugin-desc": "Use [@rspack/plugin-react-refresh](/guide/tech/react#rspackplugin-react-refresh) instead",
"@nx/webpack-desc": "Use [@nx/rspack](https://www.npmjs.com/package/@nx/rspack) instead",
"webpack-filter-warnings-plugin-desc": "Use [ignoreWarnings](/config/other-options#ignorewarnings) instead",
"speed-measure-webpack-plugin-desc": "Use [Rsdoctor](/guide/optimization/use-rsdoctor) instead"
}
5 changes: 4 additions & 1 deletion website/components/i18n/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@
"webpack-virtual-modules-desc": "使用 [rspack-plugin-virtual-module](https://github.com/rspack-contrib/rspack-plugins/tree/main/packages/plugin-virtual-module) 替代",
"webpack-manifest-plugin-desc": "使用 [rspack-manifest-plugin](https://github.com/rspack-contrib/rspack-manifest-plugin) 替代",
"workbox-webpack-plugin-desc": "使用 [@aaroon/workbox-rspack-plugin](https://github.com/Clarkkkk/workbox-rspack-plugin) 替代",
"react-refresh-webpack-plugin-desc": "使用 [@rspack/plugin-react-refresh](/guide/tech/react#rspackplugin-react-refresh) 替代"
"react-refresh-webpack-plugin-desc": "使用 [@rspack/plugin-react-refresh](/guide/tech/react#rspackplugin-react-refresh) 替代",
"@nx/webpack-desc": "使用 [@nx/rspack](https://www.npmjs.com/package/@nx/rspack) 替代",
"webpack-filter-warnings-plugin-desc": "使用 [ignoreWarnings](/config/other-options#ignorewarnings) 替代",
"speed-measure-webpack-plugin-desc": "使用 [Rsdoctor](/guide/optimization/use-rsdoctor) 替代"
}

0 comments on commit 2145af4

Please sign in to comment.