Skip to content

Commit 68b8ca5

Browse files
committed
Fixed config
1 parent d0764ea commit 68b8ca5

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

packages/fedify/deno.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,13 @@
101101
]
102102
},
103103
"pnpm:build-vocab-runtime": {
104-
"command": "cd ../vocab-runtime && pnpm build"
104+
"command": "pnpm run --filter vocab-runtime build"
105105
},
106106
"pnpm:build-vocab-tools": {
107-
"command": "cd ../vocab-tools && pnpm build"
107+
"command": "pnpm run --filter vocab-tools build"
108108
},
109109
"pnpm:build-vocab": {
110+
"command": "pnpm run --filter vocab build",
110111
"dependencies": [
111112
"pnpm:build-vocab-runtime",
112113
"pnpm:build-vocab-tools"

packages/fedify/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@
155155
"wrangler": "^4.17.0"
156156
},
157157
"scripts": {
158-
"build": "deno task codegen && pnpm run --filter vocab-runtime build && pnpm run --filter vocab-tools build && pnpm run --filter vocab build && tsdown",
158+
"build": "deno task codegen && deno task pnpm:build-vocab && tsdown",
159159
"prepack": "pnpm run build",
160160
"prepublish": "pnpm run build",
161161
"test": "deno task codegen && pnpm run --filter vocab build && tsdown && cd dist/ && node --test",
162162
"test:bun": "deno task codegen && deno task pnpm:build-vocab && tsdown && cd dist/ && bun test --timeout 60000",
163-
"test:cfworkers": "deno task codegen && wrangler deploy --dry-run --outdir src/cfworkers && node --import=tsx src/cfworkers/client.ts"
163+
"test:cfworkers": "deno task codegen && deno task pnpm:build-vocab && wrangler deploy --dry-run --outdir src/cfworkers && node --import=tsx src/cfworkers/client.ts"
164164
}
165165
}

0 commit comments

Comments
 (0)