-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dependencies and remove Typedoc configurations.
Updated package versions across multiple modules, including `nats-core`, `jetstream`, `kv`, `nkeys`, and `nuid`. Removed doc scripts and configuration from packages while centralizing documentation generation in a new `docs/package.json` file. These changes aim to simplify dependency management and streamline the documentation process. Signed-off-by: Alberto Ricart <[email protected]>
- Loading branch information
Showing
18 changed files
with
79 additions
and
75 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@nats-io/nats-core", | ||
"version": "3.0.0-48", | ||
"version": "3.0.0-49", | ||
"exports": { | ||
".": "./src/mod.ts", | ||
"./internal": "./src/internal_mod.ts" | ||
|
@@ -35,7 +35,7 @@ | |
"test": "deno test -A --parallel --reload tests/ --import-map=./import_map.json" | ||
}, | ||
"imports": { | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3", | ||
"@nats-io/nuid": "jsr:@nats-io/[email protected].1-2" | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3" | ||
} | ||
} |
This file contains 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 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// This file is generated - do not edit | ||
export const version = "3.0.0-48"; | ||
export const version = "3.0.0-49"; |
This file contains 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"scripts": { | ||
"doc": "npm run core; npm run jetstream; npm run kv; npm run obj; npm run services", | ||
"core": "(cd ../core; npm run build && typedoc --out ../docs/core && touch ../docs/core/.nojekyll)", | ||
"jetstream": "(cd ../jetstream; npm run build && typedoc --out ../docs/jetstream && touch ../docs/jetstream/.nojekyll)", | ||
"kv": "(cd ../kv; npm run build && typedoc --out ../docs/kv && touch ../docs/kv/.nojekyll)", | ||
"obj": "(cd ../obj; npm run build && typedoc --out ../docs/obj && touch ../docs/obj/.nojekyll)", | ||
"services": "(cd ../services; npm run build && typedoc --out ../docs/services && touch ../docs/services/.nojekyll)" | ||
}, | ||
"devDependencies": { | ||
"typescript": "5.6.3", | ||
"typedoc": "^0.27.6" | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@nats-io/jetstream", | ||
"version": "3.0.0-35", | ||
"version": "3.0.0-36", | ||
"exports": { | ||
".": "./src/mod.ts", | ||
"./internal": "./src/internal_mod.ts" | ||
|
@@ -33,6 +33,6 @@ | |
"test": "deno test -A --parallel --reload --trace-leaks --quiet tests/ --import-map=import_map.json" | ||
}, | ||
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48" | ||
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49" | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"imports": { | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2", | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal", | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3", | ||
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal", | ||
"test_helpers": "../test_helpers/mod.ts", | ||
"@std/io": "jsr:@std/io@0.224.0" | ||
"@std/io": "jsr:@std/io@0.225.0" | ||
} | ||
} |
This file contains 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 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 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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-35", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-35/internal", | ||
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/[email protected]36", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]36/internal", | ||
"test_helpers": "../test_helpers/mod.ts", | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2", | ||
"@std/io": "jsr:@std/io@0.224.0" | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3", | ||
"@std/io": "jsr:@std/io@0.225.0" | ||
} | ||
} |
This file contains 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 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 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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-35", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-35/internal", | ||
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/[email protected]36", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]36/internal", | ||
"test_helpers": "../test_helpers/mod.ts", | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2", | ||
"@std/io": "jsr:@std/io@0.224.0" | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3", | ||
"@std/io": "jsr:@std/io@0.225.0" | ||
} | ||
} |
This file contains 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 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 |
---|---|---|
|
@@ -33,6 +33,6 @@ | |
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json" | ||
}, | ||
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48" | ||
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49" | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal", | ||
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal", | ||
"test_helpers": "../test_helpers/mod.ts", | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2", | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3", | ||
"@std/io": "jsr:@std/[email protected]" | ||
} | ||
} |
This file contains 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 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 |
---|---|---|
|
@@ -20,8 +20,8 @@ | |
}, | ||
"imports": { | ||
"@std/io": "jsr:@std/[email protected]", | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48", | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2" | ||
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49", | ||
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2", | ||
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3" | ||
} | ||
} |
This file contains 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