Skip to content

Commit 02fdef7

Browse files
authored
fix: remove commandkit scope
1 parent 2bb6964 commit 02fdef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/commandkit/src/cli/information.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function $getKnownPlugins() {
3737
for (const pkg of packages) {
3838
try {
3939
const { name } = JSON.parse(readFileSync(pkg, 'utf8'));
40-
if (name && !BLACKLISTED.has(name)) {
40+
if (name && !BLACKLISTED.has(name.replace('@commandkit/', ''))) {
4141
knownPlugins.push(name);
4242
}
4343
} catch {

0 commit comments

Comments
 (0)