We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bb6964 commit 02fdef7Copy full SHA for 02fdef7
packages/commandkit/src/cli/information.ts
@@ -37,7 +37,7 @@ function $getKnownPlugins() {
37
for (const pkg of packages) {
38
try {
39
const { name } = JSON.parse(readFileSync(pkg, 'utf8'));
40
- if (name && !BLACKLISTED.has(name)) {
+ if (name && !BLACKLISTED.has(name.replace('@commandkit/', ''))) {
41
knownPlugins.push(name);
42
}
43
} catch {
0 commit comments