@xylabs/hex 4.14.0 → 4.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  export * from './address.ts';
2
+ export * from './assert.ts';
2
3
  export * from './hash.ts';
3
4
  export * from './hex/index.ts';
4
5
  export * from './hexToBigInt.ts';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kBAAkB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kBAAkB,CAAA"}
@@ -228,6 +228,7 @@ export {
228
228
  asAddress,
229
229
  asHash,
230
230
  asHex,
231
+ assertError,
231
232
  bitsToNibbles,
232
233
  hexFrom,
233
234
  hexFromArrayBuffer,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/hex",
3
- "version": "4.14.0",
3
+ "version": "4.14.2",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "hex",
@@ -42,14 +42,14 @@
42
42
  "src"
43
43
  ],
44
44
  "dependencies": {
45
- "@xylabs/typeof": "~4.14.0",
45
+ "@xylabs/typeof": "~4.14.2",
46
46
  "zod": "~4.0.9",
47
47
  "zod-to-json-schema": "~3.24.6"
48
48
  },
49
49
  "devDependencies": {
50
- "@xylabs/ts-scripts-yarn3": "~7.0.0",
51
- "@xylabs/tsconfig": "~7.0.0",
52
- "@xylabs/vitest-extended": "~4.14.0",
50
+ "@xylabs/ts-scripts-yarn3": "~7.0.1",
51
+ "@xylabs/tsconfig": "~7.0.1",
52
+ "@xylabs/vitest-extended": "~4.14.2",
53
53
  "typescript": "~5.8.3",
54
54
  "vitest": "~3.2.4"
55
55
  },
package/src/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './address.ts'
2
+ export * from './assert.ts'
2
3
  export * from './hash.ts'
3
4
  export * from './hex/index.ts'
4
5
  export * from './hexToBigInt.ts'