Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The repository is organized as a monorepo with the following packages:
- ~~src/runtime/~~: **Don't use.** Moved to `@fedify/vocab-runtime` and `src/utils/*`. If user code imports from here, notice and suggest migration.
- *src/shim/*: Platform abstraction layer
- *src/sig/*: Signature implementation
- *src/testing/*: Testing utilities
- *src/testing/*: Testing utilities. Most have been migrated to `packages/fixture`(`@fedify/fixture`), except for modules that have dependencies on `@fedify/fedify`.
- *src/utils/*: Utility functions
- *src/vocab/*: ActivityPub vocabulary implementation
- *src/webfinger/*: WebFinger protocol implementation
Expand All @@ -72,6 +72,7 @@ The repository is organized as a monorepo with the following packages:
- *packages/denokv/*: Deno KV integration (@fedify/denokv)
- *packages/elysia/*: Elysia integration (@fedify/elysia)
- *packages/express/*: Express.js integration (@fedify/express)
- *packages/fixture/*: Testing utilities (@fedify/fixture)
- *packages/fastify/*: Fastify integration (@fedify/fastify)
- *packages/fresh/*: Fresh integration (@fedify/fresh)
- *packages/h3/*: h3 framework integration (@fedify/h3)
Expand Down
10 changes: 8 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"./packages/express",
"./packages/fastify",
"./packages/fedify",
"./packages/fixture",
"./packages/fresh",
"./packages/h3",
"./packages/hono",
Expand Down Expand Up @@ -92,6 +93,9 @@
"codegen"
]
},
"pnpm:build-fixture": {
"command": "cd packages/fixture && pnpm build"
},
"test": {
"command": "deno test --check --doc --allow-all --unstable-kv --trace-leaks --parallel",
"dependencies": [
Expand All @@ -102,14 +106,16 @@
"command": "pnpm run --recursive --filter '!{docs}' test",
"dependencies": [
"codegen",
"install"
"install",
"pnpm:build-fixture"
]
},
"test:bun": {
"command": "pnpm run --recursive --filter '!{docs}' test:bun",
"dependencies": [
"codegen",
"install"
"install",
"pnpm:build-fixture"
]
},
"test-all": {
Expand Down
Loading
Loading