diff --git a/website/components/CommunityCompatibleTable.tsx b/website/components/CommunityCompatibleTable.tsx index e87dc30a23a..124c1e66fe2 100644 --- a/website/components/CommunityCompatibleTable.tsx +++ b/website/components/CommunityCompatibleTable.tsx @@ -301,7 +301,8 @@ export const CommunityPluginCompatibleTable: React.FC = () => { { name: 'webpack-assets-manifest', url: 'https://github.com/webdeveric/webpack-assets-manifest', - status: CompatibleStatus.Compatible, + status: CompatibleStatus.PartiallyCompatible, + description: i18n[lang]['webpack-assets-manifest-desc'], }, { name: 'git-revision-webpack-plugin', diff --git a/website/components/i18n/en.json b/website/components/i18n/en.json index 30c35a8e117..845e6bd3ced 100644 --- a/website/components/i18n/en.json +++ b/website/components/i18n/en.json @@ -26,5 +26,6 @@ "eslint-webpack-plugin-desc": "Use [eslint-rspack-plugin](https://github.com/rspack-contrib/eslint-rspack-plugin) instead", "circular-dependency-plugin-desc": "Use Eslint [import/no-cycle](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-cycle.md) rule instead", "html-webpack-tags-plugin-desc": "This plugin depends on webpack and html-webpack-plugin", - "needs-html-webpack-plugin": "This plugin depends on html-webpack-plugin" + "needs-html-webpack-plugin": "This plugin depends on html-webpack-plugin", + "webpack-assets-manifest-desc": "Only supports basic usage" } diff --git a/website/components/i18n/zh.json b/website/components/i18n/zh.json index 8d258e6af11..adb2c3a78c7 100644 --- a/website/components/i18n/zh.json +++ b/website/components/i18n/zh.json @@ -26,5 +26,6 @@ "eslint-webpack-plugin-desc": "使用 [eslint-rspack-plugin](https://github.com/rspack-contrib/eslint-rspack-plugin) 替代", "circular-dependency-plugin-desc": "使用 Eslint [import/no-cycle](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-cycle.md) 规则替代", "html-webpack-tags-plugin-desc": "该插件依赖了 webpack 和 html-webpack-plugin", - "needs-html-webpack-plugin": "该插件依赖了 html-webpack-plugin" + "needs-html-webpack-plugin": "该插件依赖了 html-webpack-plugin", + "webpack-assets-manifest-desc": "仅支持基础用法" }