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 = BN;
import { BN } from "@pezkuwi/util/bn/index";
+7
View File
@@ -0,0 +1,7 @@
// Copyright 2017-2025 @pezkuwi/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
// @ts-expect-error In dev mode we don't have export maps...
const { BN } = require('@pezkuwi/util');
module.exports = BN;
+3
View File
@@ -0,0 +1,3 @@
import { Buffer } from 'buffer-es6';
export default Buffer;
export { Buffer };
+6
View File
@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Buffer = void 0;
const buffer_es6_1 = require("buffer-es6");
Object.defineProperty(exports, "Buffer", { enumerable: true, get: function () { return buffer_es6_1.Buffer; } });
exports.default = buffer_es6_1.Buffer;
+2
View File
@@ -0,0 +1,2 @@
declare const _default: {};
export default _default;
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {};
+2
View File
@@ -0,0 +1,2 @@
import { BN } from '@pezkuwi/util';
export { BN };
+5
View File
@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BN = void 0;
const util_1 = require("@pezkuwi/util");
Object.defineProperty(exports, "BN", { enumerable: true, get: function () { return util_1.BN; } });
+2
View File
@@ -0,0 +1,2 @@
declare const _default: {};
export default _default;
+3
View File
@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {};
+1
View File
@@ -0,0 +1 @@
export { packageInfo } from './packageInfo.js';
+6
View File
@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.packageInfo = void 0;
var packageInfo_js_1 = require("./packageInfo.js");
Object.defineProperty(exports, "packageInfo", { enumerable: true, get: function () { return packageInfo_js_1.packageInfo; } });
console.error('@pezkuwi/x-bundle is not meant to be used directly');
+7
View File
@@ -0,0 +1,7 @@
interface Class {
prototype: object;
super_: Class;
[key: string]: unknown;
}
export default function inherits(child: Class, parent: Class): void;
export {};
+17
View File
@@ -0,0 +1,17 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = inherits;
function inherits(child, parent) {
if (parent) {
child.super_ = parent;
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
child.prototype = Object.create(parent.prototype, {
constructor: {
configurable: true,
enumerable: false,
value: child,
writable: true
}
});
}
}
+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-bundle', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '14.0.10' };