mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-25 14:07:58 +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 = BN;
|
||||
import { BN } from "@pezkuwi/util/bn/index";
|
||||
@@ -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;
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
import { Buffer } from 'buffer-es6';
|
||||
export default Buffer;
|
||||
export { Buffer };
|
||||
@@ -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;
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
declare const _default: {};
|
||||
export default _default;
|
||||
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {};
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
import { BN } from '@pezkuwi/util';
|
||||
export { BN };
|
||||
@@ -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; } });
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
declare const _default: {};
|
||||
export default _default;
|
||||
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {};
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
export { packageInfo } from './packageInfo.js';
|
||||
@@ -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');
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
interface Class {
|
||||
prototype: object;
|
||||
super_: Class;
|
||||
[key: string]: unknown;
|
||||
}
|
||||
export default function inherits(child: Class, parent: Class): void;
|
||||
export {};
|
||||
@@ -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
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -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-bundle', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '14.0.10' };
|
||||
Reference in New Issue
Block a user