We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ff530 commit c01a80bCopy full SHA for c01a80b
packages/generators/add-generator.ts
@@ -308,7 +308,7 @@ export default class AddGenerator extends Generator {
308
.pop()
309
.replace(".js", "")
310
)
311
- .find((p: string): boolean => p.indexOf(answeredPluginName) >= 0);
+ .find((p: string): boolean => p.toLowerCase().indexOf(answeredPluginName) >= 0);
312
313
if (pluginExist) {
314
this.configuration.config.item = pluginExist;
0 commit comments