tangled
alpha
login
or
join now
besaid.zone
/
create-atproto-app
2
fork
atom
A CLI for scaffolding ATProto web applications
2
fork
atom
overview
issues
pulls
pipelines
fix: actual fix for directory not found issue
besaid.zone
1 month ago
3ffabbcd
3c8e564a
verified
This commit was signed with the committer's
known signature
.
besaid.zone
SSH Key Fingerprint:
SHA256:Q4dc5PTI8DNTxJbH2bWsDeY6BXzfq0ce1XSA4H5Y3iI=
2/2
test.yml
success
51s
typecheck.yml
success
51s
+11
-6
4 changed files
expand all
collapse all
unified
split
.changeset
ten-years-push.md
.tangled
workflows
test.yml
package.json
src
commands
init.ts
+5
.changeset/ten-years-push.md
reviewed
···
1
1
+
---
2
2
+
"@nulfrost/create-atproto-app": patch
3
3
+
---
4
4
+
5
5
+
actual fix for "directory not found" issue
+1
-1
.tangled/workflows/test.yml
reviewed
···
20
20
command: pnpm build
21
21
22
22
- name: test
23
23
-
command: pnpm test:run
23
23
+
command: pnpm test
+4
-4
package.json
reviewed
···
31
31
"access": "public"
32
32
},
33
33
"scripts": {
34
34
-
"dev": "tsx src/index.ts",
34
34
+
"dev": "tsdown --watch",
35
35
"build": "tsdown",
36
36
"fmt": "oxfmt",
37
37
+
"start": "node dist/index.js",
37
38
"check": "tsc",
38
38
-
"test": "vitest",
39
39
-
"changeset": "changeset",
40
40
-
"test:run": "vitest run"
39
39
+
"test": "vitest run",
40
40
+
"changeset": "changeset"
41
41
},
42
42
"dependencies": {
43
43
"create-vite": "^8.3.0"
+1
-1
src/commands/init.ts
reviewed
···
155
155
156
156
const templateDir = resolve(
157
157
fileURLToPath(import.meta.url),
158
158
-
"../../../templates",
158
158
+
"../../templates",
159
159
variant,
160
160
);
161
161