Skip to content

Commit 64dab90

Browse files
committed
Try to fix release process
1 parent 93fc7e7 commit 64dab90

29 files changed

Lines changed: 194 additions & 161 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
publish_dir: docs
2828
publish_branch: gh-pages
2929
- run: npx monopub delete devDependencies,scripts
30-
- run: npx monopub exec 'npm publish --access public --provenance'
30+
- run: npx monopub exec 'pnpm publish --access public --provenance'
3131
env:
3232
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"docdash": "2.0.2",
4343
"eslint": "^9.29.0",
4444
"eslint-plugin-ava": "^15.0.1",
45-
"eslint-plugin-jsdoc": "^51.1.1",
45+
"eslint-plugin-jsdoc": "^51.1.2",
4646
"events": "^3.3.0",
4747
"jsdoc": "^4.0.4",
4848
"minami": "*",
@@ -51,7 +51,8 @@
5151
"process": "^0.11.10",
5252
"rimraf": "5.0.10",
5353
"stream-browserify": "^3.0.0",
54-
"svgo": "3.3.2",
54+
"svgo": "4.0.0",
55+
"typedoc": "0.28.5",
5556
"typescript": "^5.8.3"
5657
},
5758
"packageManager": "pnpm@10.12.1",

packages/browserify-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@babel/core": "^7.27.4",
2222
"babelify": "^10.0.0",
2323
"browserify": "^17.0.1",
24-
"cbor-bigdecimal": "10.0.5",
24+
"cbor-bigdecimal": "link:../cbor-bigdecimal/",
2525
"copyfiles": "^2.4.1",
2626
"node-inspect-extracted": "*",
2727
"rimraf": "5.0.10",

packages/cbor-bigdecimal/dist/cbor-bigdecimal.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cbor-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
"readmeFilename": "README.md",
5353
"dependencies": {
5454
"bignumber.js": "^9.3.0",
55-
"cbor": "10.0.5",
56-
"cbor-bigdecimal": "10.0.5",
55+
"cbor": "link:../cbor/",
56+
"cbor-bigdecimal": "link:../cbor-bigdecimal/",
5757
"commander": "^14.0.0",
5858
"json-text-sequence": "1.0.1"
5959
},

packages/cbor-web/dist/cbor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cbor-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"abort-controller": "3.0.0",
2222
"base64-js": "^1.5.1",
2323
"buffer": "^6.0.3",
24-
"cbor": "10.0.5",
24+
"cbor": "link:../cbor/",
2525
"events": "^3.3.0",
2626
"ieee754": "^1.2.1",
2727
"inherits": "^2.0.4",

packages/cbor-web/types/lib/commented.d.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ declare class Commented extends stream.Transform {
1616
* @param {commentCallback} [cb] If specified, called on completion.
1717
* @returns {Promise} If cb not specified.
1818
* @throws {Error} Input required.
19-
* @static
2019
*/
2120
static comment(input: string | Buffer | ArrayBuffer | Uint8Array | Uint8ClampedArray | DataView | stream.Readable, options?: CommentOptions | commentCallback | string | number, cb?: commentCallback): Promise<any>;
2221
/**
@@ -45,19 +44,19 @@ declare class Commented extends stream.Transform {
4544
/**
4645
* @ignore
4746
*/
48-
_on_more(mt: any, len: any, parent_mt: any, pos: any): void;
47+
_on_more(mt: any, len: any, _parent_mt: any, _pos: any): void;
4948
/**
5049
* @ignore
5150
*/
52-
_on_start_string(mt: any, len: any, parent_mt: any, pos: any): void;
51+
_on_start_string(mt: any, len: any, _parent_mt: any, _pos: any): void;
5352
/**
5453
* @ignore
5554
*/
5655
_on_start(mt: any, tag: any, parent_mt: any, pos: any): void;
5756
/**
5857
* @ignore
5958
*/
60-
_on_stop(mt: any): void;
59+
_on_stop(_mt: any): void;
6160
/**
6261
* @private
6362
*/

packages/cbor-web/types/lib/decoder.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ declare class Decoder extends BinaryParseStream {
3535
* @returns {ExtendedResults|any} The decoded value.
3636
* @throws {UnexpectedDataError} Data is left over after decoding.
3737
* @throws {Error} Insufficient data.
38-
* @static
3938
*/
4039
static decodeFirstSync(input: BufferLike, options?: DecoderOptions | string): ExtendedResults | any;
4140
/**
@@ -49,7 +48,6 @@ declare class Decoder extends BinaryParseStream {
4948
* @returns {Array<ExtendedResults>|Array<any>} Array of all found items.
5049
* @throws {TypeError} No input provided.
5150
* @throws {Error} Insufficient data provided.
52-
* @static
5351
*/
5452
static decodeAllSync(input: BufferLike, options?: DecoderOptions | string): Array<ExtendedResults> | Array<any>;
5553
/**
@@ -66,7 +64,6 @@ declare class Decoder extends BinaryParseStream {
6664
* @returns {Promise<ExtendedResults|any>} Returned even if callback is
6765
* specified.
6866
* @throws {TypeError} No input provided.
69-
* @static
7067
*/
7168
static decodeFirst(input: BufferLike, options?: DecoderOptions | decodeCallback | string, cb?: decodeCallback): Promise<ExtendedResults | any>;
7269
/**
@@ -86,7 +83,6 @@ declare class Decoder extends BinaryParseStream {
8683
* @returns {Promise<Array<ExtendedResults>|Array<any>>} Even if callback
8784
* is specified.
8885
* @throws {TypeError} No input specified.
89-
* @static
9086
*/
9187
static decodeAll(input: BufferLike, options?: DecoderOptions | ((error: Error, value: Array<ExtendedResults> | Array<any>) => any) | string, cb?: (error: Error, value: Array<ExtendedResults> | Array<any>) => any): Promise<Array<ExtendedResults> | Array<any>>;
9288
/**

packages/cbor-web/types/lib/diagnose.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import Decoder = require("./decoder");
5151
/**
5252
* Things that can act as inputs, from which a NoFilter can be created.
5353
*/
54-
type BufferLike = string | Buffer | ArrayBuffer | Uint8Array | Uint8ClampedArray | DataView | stream.Readable;
54+
type BufferLike = string | Buffer | ArrayBuffer | ArrayBufferView | DataView | stream.Readable;
5555
type DiagnoseOptions = {
5656
/**
5757
* Output between detected objects.

0 commit comments

Comments
 (0)