-
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. (#192)
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 <alberto@synadia.com>
- Loading branch information
Showing
20 changed files
with
88 additions
and
84 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
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
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/nats-core@3.0.0-49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@3.0.0-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/nats-core@3.0.0-49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@3.0.0-49/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@3.0.0-36", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@3.0.0-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/nats-core@3.0.0-49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@3.0.0-49/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@3.0.0-36", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@3.0.0-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,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/nats-core@3.0.0-49", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@3.0.0-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/io@0.224.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,2 +1,2 @@ | ||
// This file is generated - do not edit | ||
export const version = "3.0.0-20"; | ||
export const version = "3.0.0-21"; |
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
Oops, something went wrong.