A CLI for scaffolding ATProto web applications

fix: actual fix for directory not found issue

besaid.zone 3ffabbcd 3c8e564a

verified
+11 -6
+5
.changeset/ten-years-push.md
··· 1 + --- 2 + "@nulfrost/create-atproto-app": patch 3 + --- 4 + 5 + actual fix for "directory not found" issue
+1 -1
.tangled/workflows/test.yml
··· 20 20 command: pnpm build 21 21 22 22 - name: test 23 - command: pnpm test:run 23 + command: pnpm test
+4 -4
package.json
··· 31 31 "access": "public" 32 32 }, 33 33 "scripts": { 34 - "dev": "tsx src/index.ts", 34 + "dev": "tsdown --watch", 35 35 "build": "tsdown", 36 36 "fmt": "oxfmt", 37 + "start": "node dist/index.js", 37 38 "check": "tsc", 38 - "test": "vitest", 39 - "changeset": "changeset", 40 - "test:run": "vitest run" 39 + "test": "vitest run", 40 + "changeset": "changeset" 41 41 }, 42 42 "dependencies": { 43 43 "create-vite": "^8.3.0"
+1 -1
src/commands/init.ts
··· 155 155 156 156 const templateDir = resolve( 157 157 fileURLToPath(import.meta.url), 158 - "../../../templates", 158 + "../../templates", 159 159 variant, 160 160 ); 161 161