-
-
Notifications
You must be signed in to change notification settings - Fork 89
Extract vocab from @fedify/fedify into @fedify/vocab
#517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 28 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
fdc37f6
Created `@fedify/vocab` package
2chanhaeng 17299c7
Moved `@fedify/fedify/vocab` to `@fedify/vocab`
2chanhaeng 639458c
Moved code to `@fedify/vocab` and fixed `@fedify/vocab` inner code
2chanhaeng 73a5550
Fixed `vocab/*.ts` to `@fedify/vocab` in `@fedify/fedify`
2chanhaeng ad86b2e
Fixed code in external of `@fedify/vocab` or `@fedify/fedify`
2chanhaeng c62448b
Fixed imports
2chanhaeng 040435e
Fixed error while merge
2chanhaeng 565929c
Separated `@fedify/fedify/webfinger` to `@fedify/webfinger`
2chanhaeng 7fdfba1
Fixed merge error
2chanhaeng f9feefa
Fixed vocab test
2chanhaeng 976de48
Fixed tests
2chanhaeng 414eccb
Fixed tests
2chanhaeng 109a124
Fixed tests
2chanhaeng 177dccc
Fixed cfworkers tests
2chanhaeng ef5caec
Fixed `schemaDir`
2chanhaeng 894b0f0
Added changelog
2chanhaeng 6858db7
Fix errors
2chanhaeng d96f686
Fixed package
2chanhaeng cf94d62
Fixed lockfile
2chanhaeng c826372
Replaced platform to neutral
2chanhaeng fbc8ca7
Fixed cfworkers test
2chanhaeng e7c0b36
Replaced "node:assert" with "node:assert/strict";
2chanhaeng fd8450e
Cleanup dependencies
2chanhaeng 5149d52
Revert "Replaced platform to neutral"
2chanhaeng 033efc8
Downgrade tsdown version
2chanhaeng a3fff38
Fixed commands
2chanhaeng ff21dad
Fixed build/test error
2chanhaeng b1d16ae
Build all before test
2chanhaeng 601a510
Added docs
2chanhaeng fe01ca6
Fixed docs
2chanhaeng 9f511e5
Added docs about @fedify/webfinger
2chanhaeng File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,8 +19,10 @@ | |
| "./packages/sqlite", | ||
| "./packages/sveltekit", | ||
| "./packages/testing", | ||
| "./packages/vocab", | ||
| "./packages/vocab-runtime", | ||
| "./packages/vocab-tools", | ||
| "./packages/webfinger", | ||
| "./examples/hono-sample", | ||
| "./examples/fresh" | ||
| ], | ||
|
|
@@ -51,7 +53,7 @@ | |
| "json-preserve-indent": "npm:json-preserve-indent@^1.1.3", | ||
| "postgres": "npm:postgres@^3.4.7", | ||
| "preact": "npm:[email protected]", | ||
| "tsdown": "npm:tsdown@^0.12.9" | ||
| "tsdown": "npm:tsdown@^0.18.4" | ||
| }, | ||
| "unstable": [ | ||
| "fs", | ||
|
|
@@ -78,7 +80,13 @@ | |
| }, | ||
| "nodeModulesDir": "auto", | ||
| "tasks": { | ||
| "codegen": "deno task -f @fedify/cli codegen", | ||
| "build": { | ||
| "command": "pnpm --recursive --filter '@fedify/*' --parallel --silent build", | ||
| "dependencies": [ | ||
| "install" | ||
| ] | ||
| }, | ||
| "codegen": "deno task -f @fedify/vocab compile", | ||
| "check-versions": "deno run --allow-read --allow-write scripts/check_versions.ts", | ||
| "check-all": { | ||
| "command": "deno fmt --check && deno lint && deno check --unstable-temporal $(deno eval 'import m from \"./deno.json\" with { type: \"json\" }; for (let p of m.workspace) console.log(p)')", | ||
|
|
@@ -93,8 +101,27 @@ | |
| "codegen" | ||
| ] | ||
| }, | ||
| "pnpm:build-vocab-runtime": { | ||
| "command": "pnpm -C packages/vocab-runtime build" | ||
| }, | ||
| "pnpm:build-vocab-tools": { | ||
| "command": "pnpm -C packages/vocab-tools build" | ||
| }, | ||
| "pnpm:build-fixture": { | ||
| "command": "cd packages/fixture && pnpm build" | ||
| "command": "pnpm -C packages/fixture build" | ||
| }, | ||
| "pnpm:build-webfinger": { | ||
| "command": "pnpm -C packages/webfinger build" | ||
| }, | ||
| "pnpm:build-vocab": { | ||
| "command": "pnpm -C packages/vocab build", | ||
| "dependencies": [ | ||
| "install", | ||
| "pnpm:build-vocab-runtime", | ||
| "pnpm:build-vocab-tools", | ||
| "pnpm:build-fixture", | ||
| "pnpm:build-webfinger" | ||
| ] | ||
| }, | ||
| "test": { | ||
| "command": "deno test --check --doc --allow-all --unstable-kv --trace-leaks --parallel", | ||
|
|
@@ -105,17 +132,13 @@ | |
| "test:node": { | ||
| "command": "pnpm run --recursive --filter '!{docs}' test", | ||
| "dependencies": [ | ||
| "codegen", | ||
| "install", | ||
| "pnpm:build-fixture" | ||
| "build" | ||
| ] | ||
| }, | ||
| "test:bun": { | ||
| "command": "pnpm run --recursive --filter '!{docs}' test:bun", | ||
| "dependencies": [ | ||
| "codegen", | ||
| "install", | ||
| "pnpm:build-fixture" | ||
| "build" | ||
| ] | ||
| }, | ||
| "test-all": { | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.