Skip to content

Commit c276e2e

Browse files
authored
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 <[email protected]>
1 parent 131c9bb commit c276e2e

20 files changed

+88
-84
lines changed

Diff for: core/deno.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.0-48",
3+
"version": "3.0.0-49",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -35,7 +35,7 @@
3535
"test": "deno test -A --parallel --reload tests/ --import-map=./import_map.json"
3636
},
3737
"imports": {
38-
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3",
39-
"@nats-io/nuid": "jsr:@nats-io/[email protected].1-2"
38+
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2",
39+
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3"
4040
}
4141
}

Diff for: core/package.json

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.0-48",
3+
"version": "3.0.0-49",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -23,7 +23,6 @@
2323
"pre-process": "npm run clean && deno run -A ../bin/cjs-fix-imports.ts -o ./build/src ./src",
2424
"build-cjs": "npm run pre-process && tsc",
2525
"build": "npm run build-cjs",
26-
"doc": "npm run build && typedoc --out ../docs/core && touch ../docs/core/.nojekyll",
2726
"prepack": "npm run build",
2827
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
2928
"bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
@@ -34,13 +33,12 @@
3433
},
3534
"description": "nats-core library - this library implements all the base functionality for NATS javascript clients",
3635
"dependencies": {
37-
"@nats-io/nkeys": "2.0.0-3",
38-
"@nats-io/nuid": "2.0.1-2"
36+
"@nats-io/nkeys": "2.0.2",
37+
"@nats-io/nuid": "2.0.3"
3938
},
4039
"devDependencies": {
41-
"@types/node": "^22.7.6",
40+
"@types/node": "22.10.7",
4241
"shx": "^0.3.4",
43-
"typedoc": "^0.26.10",
44-
"typescript": "^5.5.4"
42+
"typescript": "5.6.3"
4543
}
4644
}

Diff for: core/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is generated - do not edit
2-
export const version = "3.0.0-48";
2+
export const version = "3.0.0-49";

Diff for: docs/package.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"scripts": {
3+
"doc": "npm run core; npm run jetstream; npm run kv; npm run obj; npm run services",
4+
"core": "(cd ../core; npm run build && typedoc --out ../docs/core && touch ../docs/core/.nojekyll)",
5+
"jetstream": "(cd ../jetstream; npm run build && typedoc --out ../docs/jetstream && touch ../docs/jetstream/.nojekyll)",
6+
"kv": "(cd ../kv; npm run build && typedoc --out ../docs/kv && touch ../docs/kv/.nojekyll)",
7+
"obj": "(cd ../obj; npm run build && typedoc --out ../docs/obj && touch ../docs/obj/.nojekyll)",
8+
"services": "(cd ../services; npm run build && typedoc --out ../docs/services && touch ../docs/services/.nojekyll)"
9+
},
10+
"devDependencies": {
11+
"typescript": "5.6.3",
12+
"typedoc": "^0.27.6"
13+
}
14+
}

Diff for: jetstream/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.0.0-35",
3+
"version": "3.0.0-36",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,6 +33,6 @@
3333
"test": "deno test -A --parallel --reload --trace-leaks --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48"
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49"
3737
}
3838
}

Diff for: jetstream/import_map.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"imports": {
3-
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3",
4-
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2",
5-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48",
6-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal",
3+
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2",
4+
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3",
5+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49",
6+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal",
77
"test_helpers": "../test_helpers/mod.ts",
8-
"@std/io": "jsr:@std/io@0.224.0"
8+
"@std/io": "jsr:@std/io@0.225.0"
99
}
1010
}

Diff for: jetstream/package.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.0.0-35",
3+
"version": "3.0.0-36",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -23,7 +23,6 @@
2323
"pre-process": "npm run clean && deno run -A ../bin/cjs-fix-imports.ts -o ./build/src ./src",
2424
"build-cjs": "npm run pre-process && tsc",
2525
"build": "npm run build-cjs",
26-
"doc": "npm run build && typedoc --out ../docs/jetstream && touch ../docs/jetstream/.nojekyll",
2726
"prepack": "npm run build",
2827
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
2928
"bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
@@ -34,12 +33,11 @@
3433
},
3534
"description": "jetstream library - this library implements all the base functionality for NATS JetStream for javascript clients",
3635
"dependencies": {
37-
"@nats-io/nats-core": "3.0.0-48"
36+
"@nats-io/nats-core": "3.0.0-49"
3837
},
3938
"devDependencies": {
40-
"@types/node": "^22.7.6",
39+
"@types/node": "^22.10.7",
4140
"shx": "^0.3.4",
42-
"typedoc": "^0.26.10",
43-
"typescript": "^5.6.3"
41+
"typescript": "5.6.3"
4442
}
4543
}

Diff for: kv/deno.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.0.0-29",
3+
"version": "3.0.0-30",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,7 +33,7 @@
3333
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48",
37-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-35"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-49",
37+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-36"
3838
}
3939
}

Diff for: kv/import_map.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"imports": {
3-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal",
5-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-35",
6-
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-35/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal",
5+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]36",
6+
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]36/internal",
77
"test_helpers": "../test_helpers/mod.ts",
8-
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3",
9-
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2",
10-
"@std/io": "jsr:@std/io@0.224.0"
8+
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2",
9+
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3",
10+
"@std/io": "jsr:@std/io@0.225.0"
1111
}
1212
}

Diff for: kv/package.json

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.0.0-29",
3+
"version": "3.0.0-30",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -23,7 +23,6 @@
2323
"pre-process": "npm run clean && deno run -A ../bin/cjs-fix-imports.ts -o ./build/src ./src",
2424
"build-cjs": "npm run pre-process && tsc",
2525
"build": "npm run build-cjs",
26-
"doc": "npm run build && typedoc --out ../docs/kv && touch ../docs/kv/.nojekyll",
2726
"prepack": "npm run build",
2827
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
2928
"bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
@@ -34,13 +33,12 @@
3433
},
3534
"description": "kv library - this library implements all the base functionality for NATS KV javascript clients",
3635
"dependencies": {
37-
"@nats-io/jetstream": "3.0.0-35",
38-
"@nats-io/nats-core": "3.0.0-48"
36+
"@nats-io/jetstream": "3.0.0-36",
37+
"@nats-io/nats-core": "3.0.0-49"
3938
},
4039
"devDependencies": {
41-
"@types/node": "^22.7.6",
40+
"@types/node": "^22.10.7",
4241
"shx": "^0.3.4",
43-
"typedoc": "^0.26.10",
44-
"typescript": "^5.6.3"
42+
"typescript": "5.6.3"
4543
}
4644
}

Diff for: obj/deno.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/obj",
3-
"version": "3.0.0-31",
3+
"version": "3.0.0-32",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,7 +33,7 @@
3333
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48",
37-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-35"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-49",
37+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-36"
3838
}
3939
}

Diff for: obj/import_map.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"imports": {
3-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal",
5-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-35",
6-
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-35/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal",
5+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]36",
6+
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]36/internal",
77
"test_helpers": "../test_helpers/mod.ts",
8-
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3",
9-
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2",
10-
"@std/io": "jsr:@std/io@0.224.0"
8+
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2",
9+
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3",
10+
"@std/io": "jsr:@std/io@0.225.0"
1111
}
1212
}

Diff for: obj/package.json

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/obj",
3-
"version": "3.0.0-31",
3+
"version": "3.0.0-32",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -23,7 +23,6 @@
2323
"pre-process": "npm run clean && deno run -A ../bin/cjs-fix-imports.ts -o ./build/src ./src",
2424
"build-cjs": "npm run pre-process && tsc",
2525
"build": "npm run build-cjs",
26-
"doc": "npm run build && typedoc --out ../docs/obj && touch ../docs/obj/.nojekyll",
2726
"prepack": "npm run build",
2827
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
2928
"bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
@@ -34,13 +33,12 @@
3433
},
3534
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
3635
"dependencies": {
37-
"@nats-io/jetstream": "3.0.0-35",
38-
"@nats-io/nats-core": "3.0.0-48"
36+
"@nats-io/jetstream": "3.0.0-36",
37+
"@nats-io/nats-core": "3.0.0-49"
3938
},
4039
"devDependencies": {
41-
"@types/node": "^22.7.6",
40+
"@types/node": "22.10.7",
4241
"shx": "^0.3.4",
43-
"typedoc": "^0.26.10",
44-
"typescript": "^5.6.3"
42+
"typescript": "5.6.3"
4543
}
4644
}

Diff for: services/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/services",
3-
"version": "3.0.0-23",
3+
"version": "3.0.0-24",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,6 +33,6 @@
3333
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48"
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49"
3737
}
3838
}

Diff for: services/import_map.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"imports": {
3-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-48/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]49/internal",
55
"test_helpers": "../test_helpers/mod.ts",
6-
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3",
7-
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2",
6+
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2",
7+
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3",
88
"@std/io": "jsr:@std/[email protected]"
99
}
1010
}

Diff for: services/package.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/services",
3-
"version": "3.0.0-23",
3+
"version": "3.0.0-24",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -23,7 +23,6 @@
2323
"pre-process": "npm run clean && deno run -A ../bin/cjs-fix-imports.ts -o ./build/src ./src",
2424
"build-cjs": "npm run pre-process && tsc",
2525
"build": "npm run build-cjs",
26-
"doc": "npm run build && typedoc --out ../docs/services && touch ../docs/services/.nojekyll",
2726
"prepack": "npm run build",
2827
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
2928
"bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
@@ -34,12 +33,11 @@
3433
},
3534
"description": "services library - this library implements all the base functionality for NATS services for javascript clients",
3635
"dependencies": {
37-
"@nats-io/nats-core": "3.0.0-48"
36+
"@nats-io/nats-core": "3.0.0-49"
3837
},
3938
"devDependencies": {
40-
"@types/node": "^22.7.6",
39+
"@types/node": "22.10.7",
4140
"shx": "^0.3.4",
42-
"typedoc": "^0.26.10",
43-
"typescript": "^5.6.3"
41+
"typescript": "5.6.3"
4442
}
4543
}

Diff for: transport-deno/deno.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/transport-deno",
3-
"version": "3.0.0-20",
3+
"version": "3.0.0-21",
44
"exports": {
55
".": "./src/mod.ts"
66
},
@@ -20,8 +20,8 @@
2020
},
2121
"imports": {
2222
"@std/io": "jsr:@std/[email protected]",
23-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-48",
24-
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.0-3",
25-
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.1-2"
23+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]49",
24+
"@nats-io/nkeys": "jsr:@nats-io/nkeys@~2.0.2",
25+
"@nats-io/nuid": "jsr:@nats-io/nuid@~2.0.3"
2626
}
2727
}

Diff for: transport-deno/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is generated - do not edit
2-
export const version = "3.0.0-20";
2+
export const version = "3.0.0-21";

Diff for: transport-node/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/transport-node",
3-
"version": "3.0.0-33",
3+
"version": "3.0.0-34",
44
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
55
"keywords": [
66
"nats",
@@ -55,17 +55,17 @@
5555
"node": ">= 18.0.0"
5656
},
5757
"dependencies": {
58-
"@nats-io/nats-core": "3.0.0-48",
59-
"@nats-io/nkeys": "2.0.0-3",
60-
"@nats-io/nuid": "2.0.1-2"
58+
"@nats-io/nats-core": "3.0.0-49",
59+
"@nats-io/nkeys": "2.0.2",
60+
"@nats-io/nuid": "2.0.3"
6161
},
6262
"devDependencies": {
63-
"@types/node": "^22.7.6",
63+
"@types/node": "22.10.7",
6464
"minimist": "^1.2.8",
6565
"shx": "^0.3.3",
6666
"typescript": "5.6.3",
67-
"@nats-io/jetstream": "3.0.0-35",
68-
"@nats-io/kv": "3.0.0-29",
69-
"@nats-io/obj": "3.0.0-31"
67+
"@nats-io/jetstream": "3.0.0-36",
68+
"@nats-io/kv": "3.0.0-30",
69+
"@nats-io/obj": "3.0.0-32"
7070
}
7171
}

0 commit comments

Comments
 (0)