Skip to content

Commit f9bc42e

Browse files
authored
Merge pull request #221 from hildjj/linkWorkspacePackages
Use pnpm linkWorkspacePackages to prevent version issues during publish
2 parents 3ae16ce + 235bcad commit f9bc42e

12 files changed

Lines changed: 319 additions & 323 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [20, 22, 23]
19+
node-version: [20, 22, 24]
2020
platform: [ubuntu-latest, windows-latest]
2121

2222
runs-on: ${{ matrix.platform }}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
"buffer": "^6.0.3",
4141
"copyfiles": "2.4.1",
4242
"docdash": "2.0.2",
43-
"eslint": "^9.29.0",
43+
"eslint": "^9.30.0",
4444
"eslint-plugin-ava": "^15.0.1",
45-
"eslint-plugin-jsdoc": "^51.1.2",
45+
"eslint-plugin-jsdoc": "^51.3.1",
4646
"events": "^3.3.0",
4747
"jsdoc": "^4.0.4",
4848
"minami": "*",
@@ -52,10 +52,10 @@
5252
"rimraf": "5.0.10",
5353
"stream-browserify": "^3.0.0",
5454
"svgo": "4.0.0",
55-
"typedoc": "0.28.5",
55+
"typedoc": "0.28.7",
5656
"typescript": "^5.8.3"
5757
},
58-
"packageManager": "pnpm@10.12.1",
58+
"packageManager": "pnpm@10.12.4",
5959
"engines": {
6060
"node": ">=20"
6161
}

packages/browserify-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"author": "Joe Hildebrand <joe-github@cursive.net>",
1919
"license": "MIT",
2020
"devDependencies": {
21-
"@babel/core": "^7.27.4",
21+
"@babel/core": "^7.27.7",
2222
"babelify": "^10.0.0",
2323
"browserify": "^17.0.1",
2424
"cbor-bigdecimal": "10.0.6",

packages/cbor-cli/man/cbor.1.gz

-1 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.
-3 Bytes
Binary file not shown.

packages/cbor-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"lint": "eslint lib/*.js bin/* test/*.js",
2626
"test": "ava",
2727
"man": "mkdir -p man; for f in man_src/*.md; do b=`basename $f`; marked-man $f -o man/${b%.md}.1; gzip -9f man/${b%.md}.1; done",
28-
"release": "npm version patch && git push --follow-tags && npm publish",
2928
"typecheck": "tsc --allowJs --checkJs --noEmit --target ES6 --moduleResolution node lib/*.js",
3029
"coverage": "nyc -r html ava",
3130
"dev": "light-server -q -s. -w 'lib/*.js,test/*.js,bin/*.js # npm run coverage' -o /coverage/index.html"
@@ -41,7 +40,8 @@
4140
"email": "joe-github@cursive.net"
4241
},
4342
"devDependencies": {
44-
"marked": "^15.0.12",
43+
"@types/node": "^24.0.7",
44+
"marked": "^16.0.0",
4545
"marked-man": "^2.1.0",
4646
"mock-stdio": "^1.0.3",
4747
"nofilter": "^3.0.2",

packages/puppeteer-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"license": "MIT",
1313
"devDependencies": {
1414
"chrome-finder": "^1.0.7",
15-
"puppeteer": "^24.10.2"
15+
"puppeteer": "^24.11.1"
1616
},
1717
"engines": {
1818
"node": ">=20"

0 commit comments

Comments
 (0)