mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
export { packageInfo } from './packageInfo.js';
|
||||
export declare const BigInt: BigIntConstructor;
|
||||
@@ -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);
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"type": "commonjs"
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
export declare const packageInfo: {
|
||||
name: string;
|
||||
path: string;
|
||||
type: string;
|
||||
version: string;
|
||||
};
|
||||
@@ -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' };
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
@@ -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);
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
export { packageInfo } from './packageInfo.js';
|
||||
export declare const BigInt: BigIntConstructor;
|
||||
@@ -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);
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
export declare const packageInfo: {
|
||||
name: string;
|
||||
path: string;
|
||||
type: string;
|
||||
version: string;
|
||||
};
|
||||
@@ -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' };
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
@@ -0,0 +1,3 @@
|
||||
import { BigInt } from '@pezkuwi/x-bigint';
|
||||
import { exposeGlobal } from '@pezkuwi/x-global';
|
||||
exposeGlobal('BigInt', BigInt);
|
||||
Reference in New Issue
Block a user