fix: update to 14.0.12 with author and dependency fixes

- Author: Dijital Kurdistan Tech Institute <dev@pezkuwichain.io>
- Fixed Uint8Array type errors in test files
- Added @types/react-native devDependency for x-randomvalues
- Added @pezkuwi/hw-ledger devDependency for networks tests
- Added @pezkuwi/x-randomvalues devDependency for util tests
- Updated all internal dependencies to 14.0.12
This commit is contained in:
2026-01-30 22:48:06 +03:00
parent 4a8fe9b100
commit 8f0415ed0f
32 changed files with 12413 additions and 180 deletions
+14 -11
View File
@@ -1,5 +1,5 @@
{
"author": "Pezkuwi Team <team@pezkuwichain.app>",
"author": "Dijital Kurdistan Tech Institute <dev@pezkuwichain.io>",
"bugs": "https://github.com/pezkuwichain/pezkuwi-common/issues",
"description": "A collection of useful utilities for @pezkuwi",
"engines": {
@@ -18,13 +18,11 @@
"./cjs/packageDetect.js"
],
"type": "module",
"version": "14.0.11",
"types": "./index.d.ts",
"version": "14.0.12",
"main": "./cjs/index.js",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
"./cjs/package.json": "./cjs/package.json",
"./cjs/*": "./cjs/*.js",
".": {
"types": "./index.d.ts",
"module": {
@@ -447,6 +445,8 @@
"default": "./bundle.js"
}
},
"./cjs/*": "./cjs/*.js",
"./cjs/package.json": "./cjs/package.json",
"./compact": {
"module": {
"types": "./compact/index.d.ts",
@@ -1575,7 +1575,7 @@
"default": "./packageDetect.js"
}
},
"./packageInfo.js": {
"./packageInfo": {
"module": {
"types": "./packageInfo.d.ts",
"default": "./packageInfo.js"
@@ -1589,7 +1589,7 @@
"default": "./packageInfo.js"
}
},
"./packageInfo": {
"./packageInfo.js": {
"module": {
"types": "./packageInfo.d.ts",
"default": "./packageInfo.js"
@@ -1987,12 +1987,15 @@
}
},
"dependencies": {
"@pezkuwi/x-bigint": "14.0.11",
"@pezkuwi/x-global": "14.0.11",
"@pezkuwi/x-textdecoder": "14.0.11",
"@pezkuwi/x-textencoder": "14.0.11",
"@pezkuwi/x-bigint": "14.0.12",
"@pezkuwi/x-global": "14.0.12",
"@pezkuwi/x-textdecoder": "14.0.12",
"@pezkuwi/x-textencoder": "14.0.12",
"@types/bn.js": "^5.1.6",
"bn.js": "^5.2.1",
"tslib": "^2.8.0"
},
"devDependencies": {
"@pezkuwi/x-randomvalues": "14.0.12"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.10' };
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.12' };
+1 -1
View File
@@ -60,7 +60,7 @@ describe('u8aToHex', (): void => {
it('returns the hex value where allowed < max', (): void => {
expect(
u8aToHex(
new Uint8Array(Uint8Array.from([128, 0, 10, 11]), 64)
Uint8Array.from([128, 0, 10, 11])
)
).toEqual('0x80000a0b');
});
+1 -1
View File
@@ -47,7 +47,7 @@ describe('u8aToHex', (): void => {
it('returns the hex value where allowed < max', (): void => {
expect(
u8aToHex(
new Uint8Array(Uint8Array.from([128, 0, 10, 11]), 64)
Uint8Array.from([128, 0, 10, 11])
)
).toEqual('0x80000a0b');
});