chore: update to version 14.0.11 and align website URLs

This commit is contained in:
2026-01-11 11:34:13 +03:00
parent ef74383349
commit 19c8d69bd8
1499 changed files with 53633 additions and 89 deletions
+2
View File
@@ -0,0 +1,2 @@
export { packageInfo } from './packageInfo.js';
export declare const BigInt: BigIntConstructor;
+20
View File
@@ -0,0 +1,20 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BigInt = exports.packageInfo = void 0;
const x_global_1 = require("@pezkuwi/x-global");
var packageInfo_js_1 = require("./packageInfo.js");
Object.defineProperty(exports, "packageInfo", { enumerable: true, get: function () { return packageInfo_js_1.packageInfo; } });
/**
* @internal
*
* There are _still_ some older environments (specifically RN < 0.70), that does
* not have proper BigInt support - a non-working fallback is provided for those.
*
* We detect availability of BigInt upon usage, so this is purely to allow functional
* compilation & bundling. Since we have operators such as *+-/ top-level, a number-ish
* result is used here.
*/
function invalidFallback() {
return Number.NaN;
}
exports.BigInt = (0, x_global_1.extractGlobal)('BigInt', invalidFallback);
+3
View File
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
+6
View File
@@ -0,0 +1,6 @@
export declare const packageInfo: {
name: string;
path: string;
type: string;
version: string;
};
+4
View File
@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.packageInfo = void 0;
exports.packageInfo = { name: '@pezkuwi/x-bigint', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '14.0.10' };
+1
View File
@@ -0,0 +1 @@
export {};
+5
View File
@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const x_bigint_1 = require("@pezkuwi/x-bigint");
const x_global_1 = require("@pezkuwi/x-global");
(0, x_global_1.exposeGlobal)('BigInt', x_bigint_1.BigInt);
+2
View File
@@ -0,0 +1,2 @@
export { packageInfo } from './packageInfo.js';
export declare const BigInt: BigIntConstructor;
+16
View File
@@ -0,0 +1,16 @@
import { extractGlobal } from '@pezkuwi/x-global';
export { packageInfo } from './packageInfo.js';
/**
* @internal
*
* There are _still_ some older environments (specifically RN < 0.70), that does
* not have proper BigInt support - a non-working fallback is provided for those.
*
* We detect availability of BigInt upon usage, so this is purely to allow functional
* compilation & bundling. Since we have operators such as *+-/ top-level, a number-ish
* result is used here.
*/
function invalidFallback() {
return Number.NaN;
}
export const BigInt = /*#__PURE__*/ extractGlobal('BigInt', invalidFallback);
+84 -3
View File
@@ -15,12 +15,93 @@
},
"sideEffects": [
"./shim.js",
"./shim.cjs"
"./cjs/shim.js"
],
"type": "module",
"version": "14.0.10",
"version": "14.0.11",
"main": "./cjs/index.js",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
"./cjs/package.json": "./cjs/package.json",
"./cjs/*": "./cjs/*.js",
".": {
"module": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"default": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./package.json": {
"require": "./cjs/package.json",
"default": "./package.json"
},
"./packageInfo.js": {
"module": {
"types": "./packageInfo.d.ts",
"default": "./packageInfo.js"
},
"require": {
"types": "./cjs/packageInfo.d.ts",
"default": "./cjs/packageInfo.js"
},
"default": {
"types": "./packageInfo.d.ts",
"default": "./packageInfo.js"
}
},
"./packageInfo": {
"module": {
"types": "./packageInfo.d.ts",
"default": "./packageInfo.js"
},
"require": {
"types": "./cjs/packageInfo.d.ts",
"default": "./cjs/packageInfo.js"
},
"default": {
"types": "./packageInfo.d.ts",
"default": "./packageInfo.js"
}
},
"./shim.js": {
"module": {
"types": "./shim.d.ts",
"default": "./shim.js"
},
"require": {
"types": "./cjs/shim.d.ts",
"default": "./cjs/shim.js"
},
"default": {
"types": "./shim.d.ts",
"default": "./shim.js"
}
},
"./shim": {
"module": {
"types": "./shim.d.ts",
"default": "./shim.js"
},
"require": {
"types": "./cjs/shim.d.ts",
"default": "./cjs/shim.js"
},
"default": {
"types": "./shim.d.ts",
"default": "./shim.js"
}
}
},
"dependencies": {
"@pezkuwi/x-global": "workspace:*",
"@pezkuwi/x-global": "14.0.11",
"tslib": "^2.8.0"
}
}
+6
View File
@@ -0,0 +1,6 @@
export declare const packageInfo: {
name: string;
path: string;
type: string;
version: string;
};
+1
View File
@@ -0,0 +1 @@
export const packageInfo = { name: '@pezkuwi/x-bigint', path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto', type: 'esm', version: '14.0.10' };
+1
View File
@@ -0,0 +1 @@
export {};
+3
View File
@@ -0,0 +1,3 @@
import { BigInt } from '@pezkuwi/x-bigint';
import { exposeGlobal } from '@pezkuwi/x-global';
exposeGlobal('BigInt', BigInt);