feat: disable folder name check in cli package

In the new extension loading design, we don't require the folder name to match extension identifier
This commit is contained in:
Huakun Shen 2025-01-07 16:12:28 -05:00
parent 59855992d7
commit 7c68a8d70f
No known key found for this signature in database
3 changed files with 11 additions and 10 deletions

View File

@ -1,5 +1,11 @@
# kksh
## 0.0.29
### Patch Changes
- Disable check for folder name. identifier and folder name no longer need to be the same.
## 0.0.28
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "kksh",
"module": "dist/cli.js",
"version": "0.0.28",
"version": "0.0.29",
"type": "module",
"bin": {
"kksh": "./dist/cli.js",
@ -10,7 +10,8 @@
"author": "Huakun",
"scripts": {
"build": "bun build.ts",
"test": "cross-env NODE_ENV=test bun test --coverage"
"test": "cross-env NODE_ENV=test bun test --coverage",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",

View File

@ -66,18 +66,12 @@ export function verifySingleProject(projectPath: string): boolean {
pkg.kunkun.identifier = folderName
// }
}
if (pkg.kunkun.identifier !== folderName) {
logger.error(
`Extension package name at [pkg.kunkun.identifier](${pkg.kunkun.identifier}) is not the same as the folder name [${folderName}], please fix it`
)
return false
}
for (const cmd of pkg.kunkun.customUiCmds) {
for (const cmd of pkg.kunkun.customUiCmds ?? []) {
if (!verifyCustomUiCommand(projectPath, cmd)) {
return false
}
}
for (const cmd of pkg.kunkun.templateUiCmds) {
for (const cmd of pkg.kunkun.templateUiCmds ?? []) {
if (!verifyTemplateUiCommand(projectPath, cmd)) {
return false
}