diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 867de430..35b829c1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -118,8 +118,8 @@ importers: examples/playground: devDependencies: vite: - specifier: ^5.0.2 - version: 5.0.10(@types/node@20.10.5) + specifier: ^3.0.9 + version: 3.2.7(@types/node@20.10.5) examples/vapor: devDependencies: diff --git a/tools/chibivue-playground/main.ts b/tools/chibivue-playground/main.ts index 60e6ca51..5def6eaa 100644 --- a/tools/chibivue-playground/main.ts +++ b/tools/chibivue-playground/main.ts @@ -5,7 +5,7 @@ const red = (s: string) => `\x1b[31m${s}\x1b[0m` const green = (s: string) => `\x1b[32m${s}\x1b[0m` const blue = (s: string) => `\x1b[34m${s}\x1b[0m` -const targetDirPath = 'example/playground' +const targetDirPath = 'examples/playground' // check if target path is empty if (!targetDirPath) { diff --git a/tools/chibivue-playground/template/package.json b/tools/chibivue-playground/template/package.json index 854a0457..306e774d 100644 --- a/tools/chibivue-playground/template/package.json +++ b/tools/chibivue-playground/template/package.json @@ -1,15 +1,14 @@ { - "name": "chibi-vue", - "version": "1.0.0", + "name": "@examples/playground", + "version": "0.0.0", "type": "module", "scripts": { "dev": "vite" }, - "author": "Ubugeeei ", "devDependencies": { - "vite": "^3.0.9" + "vite": "^5" }, "volta": { - "node": "18.14.0" + "node": "20.10.0" } }