diff --git a/.changeset/giant-trees-attend.md b/.changeset/giant-trees-attend.md new file mode 100644 index 000000000000..4cd11db5cfa1 --- /dev/null +++ b/.changeset/giant-trees-attend.md @@ -0,0 +1,5 @@ +--- +'@modern-js/generator-common': patch +--- + +fix tips typo of testingPlugin, "testPlugin" -> "testingPlugin" diff --git a/packages/generator/generator-common/src/newAction/module/index.ts b/packages/generator/generator-common/src/newAction/module/index.ts index 5f423bb65eac..d9d60147b829 100644 --- a/packages/generator/generator-common/src/newAction/module/index.ts +++ b/packages/generator/generator-common/src/newAction/module/index.ts @@ -104,7 +104,7 @@ export const ModuleNewActionPluginName: Partial< [ActionType.Function]: { [ActionFunction.TailwindCSS]: 'tailwindcssPlugin', [ActionFunction.ModuleDoc]: 'modulePluginDoc', - [ActionFunction.Test]: 'testPlugin', + [ActionFunction.Test]: 'testingPlugin', }, }; diff --git a/packages/generator/generator-common/src/newAction/mwa/index.ts b/packages/generator/generator-common/src/newAction/mwa/index.ts index c423c809a890..6e12d7120a59 100644 --- a/packages/generator/generator-common/src/newAction/mwa/index.ts +++ b/packages/generator/generator-common/src/newAction/mwa/index.ts @@ -205,7 +205,7 @@ export const MWANewActionPluginName: Record< [ActionFunction.TailwindCSS]: 'tailwindcssPlugin', [ActionFunction.BFF]: 'bffPlugin', [ActionFunction.MicroFrontend]: 'garfishPlugin', - [ActionFunction.Test]: 'testPlugin', + [ActionFunction.Test]: 'testingPlugin', [ActionFunction.Storybook]: 'storybookPlugin', [ActionFunction.SSG]: 'ssgPlugin', [ActionFunction.Polyfill]: 'polyfillPlugin',