Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Sep 25, 2024
1 parent 37c5fde commit deb1081
Show file tree
Hide file tree
Showing 27 changed files with 63 additions and 63 deletions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"c8": "^10.0.0",
"chai": "^5.0.0",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.0",
"c8": "^10.1.2",
"chai": "^5.1.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"ipld-garbage": "^5.0.0",
"mocha": "^10.2.0",
"polendina": "^3.2.1",
"semantic-release": "^24.0.0",
"standard": "^17.1.0",
"typescript": "^5.3.3"
"mocha": "^10.7.3",
"polendina": "^3.2.2",
"semantic-release": "^24.1.1",
"standard": "^17.1.2",
"typescript": "^5.6.2"
},
"exports": {
".": {
Expand Down
8 changes: 4 additions & 4 deletions types/cborg.d.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/**
* There was originally just `TypeEncoder` so don't break types by renaming or not exporting
*/
export type TagDecoder = import('./interface').TagDecoder;
export type TagDecoder = import("./interface").TagDecoder;
/**
* Export the types that were present in the original manual cborg.d.ts
*/
export type TypeEncoder = import('./interface').OptionalTypeEncoder;
export type TypeEncoder = import("./interface").OptionalTypeEncoder;
/**
* Export the types that were present in the original manual cborg.d.ts
*/
export type DecodeOptions = import('./interface').DecodeOptions;
export type DecodeOptions = import("./interface").DecodeOptions;
/**
* Export the types that were present in the original manual cborg.d.ts
*/
export type EncodeOptions = import('./interface').EncodeOptions;
export type EncodeOptions = import("./interface").EncodeOptions;
import { decode } from './lib/decode.js';
import { decodeFirst } from './lib/decode.js';
import { Tokeniser } from './lib/decode.js';
Expand Down
4 changes: 2 additions & 2 deletions types/lib/0uint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export namespace encodeUintValue {
function encodedSize(uint: number): number;
}
export const uintBoundaries: (number | bigint)[];
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
import { Token } from './token.js';
//# sourceMappingURL=0uint.d.ts.map
2 changes: 1 addition & 1 deletion types/lib/0uint.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions types/lib/1negint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export namespace encodeNegint {
*/
function compareTokens(tok1: Token, tok2: Token): number;
}
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
import { Token } from './token.js';
//# sourceMappingURL=1negint.d.ts.map
2 changes: 1 addition & 1 deletion types/lib/1negint.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions types/lib/2bytes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export namespace encodeBytes {
* @returns {number}
*/
export function compareBytes(b1: Uint8Array, b2: Uint8Array): number;
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
import { Token } from './token.js';
//# sourceMappingURL=2bytes.d.ts.map
2 changes: 1 addition & 1 deletion types/lib/2bytes.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions types/lib/3string.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export function decodeString32(data: Uint8Array, pos: number, _minor: number, op
*/
export function decodeString64(data: Uint8Array, pos: number, _minor: number, options: DecodeOptions): Token;
export const encodeString: typeof encodeBytes;
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
import { Token } from './token.js';
import { encodeBytes } from './2bytes.js';
//# sourceMappingURL=3string.d.ts.map
4 changes: 2 additions & 2 deletions types/lib/4array.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export namespace encodeArray {
*/
function encodedSize(token: Token): number;
}
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
import { Token } from './token.js';
//# sourceMappingURL=4array.d.ts.map
2 changes: 1 addition & 1 deletion types/lib/4array.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions types/lib/5map.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export namespace encodeMap {
*/
function encodedSize(token: Token): number;
}
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
import { Token } from './token.js';
//# sourceMappingURL=5map.d.ts.map
2 changes: 1 addition & 1 deletion types/lib/5map.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions types/lib/6tag.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export namespace encodeTag {
*/
function encodedSize(token: Token): number;
}
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
import { Token } from './token.js';
//# sourceMappingURL=6tag.d.ts.map
2 changes: 1 addition & 1 deletion types/lib/6tag.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions types/lib/7float.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export namespace encodeFloat {
* @param {EncodeOptions} options
* @returns {number}
*/
function encodedSize(token: Token, options: import("../interface").EncodeOptions): number;
function encodedSize(token: Token, options: EncodeOptions): number;
let compareTokens: (tok1: Token, tok2: Token) => number;
}
export type Bl = import('./bl.js').Bl;
export type DecodeOptions = import('../interface').DecodeOptions;
export type EncodeOptions = import('../interface').EncodeOptions;
export type Bl = import("./bl.js").Bl;
export type DecodeOptions = import("../interface").DecodeOptions;
export type EncodeOptions = import("../interface").EncodeOptions;
import { Token } from './token.js';
//# sourceMappingURL=7float.d.ts.map
2 changes: 1 addition & 1 deletion types/lib/7float.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions types/lib/decode.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type Token = import('./token.js').Token;
export type DecodeOptions = import('../interface').DecodeOptions;
export type DecodeTokenizer = import('../interface').DecodeTokenizer;
export type Token = import("./token.js").Token;
export type DecodeOptions = import("../interface").DecodeOptions;
export type DecodeTokenizer = import("../interface").DecodeTokenizer;
/**
* @implements {DecodeTokenizer}
*/
Expand Down
2 changes: 1 addition & 1 deletion types/lib/decode.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions types/lib/encode.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/** @returns {TokenTypeEncoder[]} */
export function makeCborEncoders(): TokenTypeEncoder[];
export type EncodeOptions = import('../interface').EncodeOptions;
export type OptionalTypeEncoder = import('../interface').OptionalTypeEncoder;
export type Reference = import('../interface').Reference;
export type StrictTypeEncoder = import('../interface').StrictTypeEncoder;
export type TokenTypeEncoder = import('../interface').TokenTypeEncoder;
export type TokenOrNestedTokens = import('../interface').TokenOrNestedTokens;
export type EncodeOptions = import("../interface").EncodeOptions;
export type OptionalTypeEncoder = import("../interface").OptionalTypeEncoder;
export type Reference = import("../interface").Reference;
export type StrictTypeEncoder = import("../interface").StrictTypeEncoder;
export type TokenTypeEncoder = import("../interface").TokenTypeEncoder;
export type TokenOrNestedTokens = import("../interface").TokenOrNestedTokens;
/**
* @param {any} obj
* @param {EncodeOptions} [options]
Expand Down
Loading

0 comments on commit deb1081

Please sign in to comment.