mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
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:
parent
59855992d7
commit
7c68a8d70f
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user