安装包

This commit is contained in:
zhengw
2026-01-28 17:14:38 +08:00
parent 365fcdb19a
commit af7928d39d
6 changed files with 38 additions and 19 deletions

View File

@@ -4,11 +4,11 @@ var __DEFINE__ = function(modId, func, req) { var m = { exports: {}, _tempexport
var __REQUIRE__ = function(modId, source) { if(!__MODS__[modId]) return require(source); if(!__MODS__[modId].status) { var m = __MODS__[modId].m; m._exports = m._tempexports; var desp = Object.getOwnPropertyDescriptor(m, "exports"); if (desp && desp.configurable) Object.defineProperty(m, "exports", { set: function (val) { if(typeof val === "object" && val !== m._exports) { m._exports.__proto__ = val.__proto__; Object.keys(val).forEach(function (k) { m._exports[k] = val[k]; }); } m._tempexports = val }, get: function () { return m._tempexports; } }); __MODS__[modId].status = 1; __MODS__[modId].func(__MODS__[modId].req, m, m.exports); } return __MODS__[modId].m.exports; };
var __REQUIRE_WILDCARD__ = function(obj) { if(obj && obj.__esModule) { return obj; } else { var newObj = {}; if(obj != null) { for(var k in obj) { if (Object.prototype.hasOwnProperty.call(obj, k)) newObj[k] = obj[k]; } } newObj.default = obj; return newObj; } };
var __REQUIRE_DEFAULT__ = function(obj) { return obj && obj.__esModule ? obj.default : obj; };
__DEFINE__(1767939516023, function(require, module, exports) {
__DEFINE__(1769409566130, function(require, module, exports) {
/*
* big.js v7.0.1
* big.js v6.2.2
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
* Copyright (c) 2025 Michael Mclaughlin
* Copyright (c) 2024 Michael Mclaughlin
* https://github.com/MikeMcl/big.js/LICENCE.md
*/
;(function (GLOBAL) {
@@ -96,9 +96,7 @@ __DEFINE__(1767939516023, function(require, module, exports) {
var x = this;
// Enable constructor usage without new.
if (!(x instanceof Big)) {
return n === UNDEFINED && arguments.length === 0 ? _Big_() : new Big(n);
}
if (!(x instanceof Big)) return n === UNDEFINED ? _Big_() : new Big(n);
// Duplicate.
if (n instanceof Big) {
@@ -639,8 +637,8 @@ __DEFINE__(1767939516023, function(require, module, exports) {
return this.minus(x.times(y));
};
/*
* Return a new Big whose value is the value of this Big negated.
*/
@@ -1052,7 +1050,7 @@ __DEFINE__(1767939516023, function(require, module, exports) {
})(this);
}, function(modId) {var map = {}; return __REQUIRE__(map[modId], modId); })
return __REQUIRE__(1767939516023);
return __REQUIRE__(1769409566130);
})()
//miniprogram-npm-outsideDeps=[]
//# sourceMappingURL=index.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

15
package-lock.json generated
View File

@@ -8,7 +8,8 @@
"name": "miniprogram-ts-quickstart",
"version": "1.0.0",
"dependencies": {
"big.js": "v7.0.1",
"big.js": "v6.2.2",
"dayjs": "^1.11.19",
"tdesign-miniprogram": "^1.12.1"
},
"devDependencies": {
@@ -24,9 +25,9 @@
"license": "MIT"
},
"node_modules/big.js": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/big.js/-/big.js-7.0.1.tgz",
"integrity": "sha512-iFgV784tD8kq4ccF1xtNMZnXeZzVuXWWM+ERFzKQjv+A5G9HC8CY3DuV45vgzFFcW+u2tIvmF95+AzWgs6BjCg==",
"version": "6.2.2",
"resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.2.tgz",
"integrity": "sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==",
"license": "MIT",
"engines": {
"node": "*"
@@ -36,6 +37,12 @@
"url": "https://opencollective.com/bigjs"
}
},
"node_modules/dayjs": {
"version": "1.11.19",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.19.tgz",
"integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==",
"license": "MIT"
},
"node_modules/miniprogram-api-typings": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/miniprogram-api-typings/-/miniprogram-api-typings-4.1.2.tgz",

View File

@@ -7,12 +7,12 @@
"author": "",
"license": "",
"dependencies": {
"tdesign-miniprogram": "^1.12.1",
"big.js": "v7.0.1"
"big.js": "v6.2.2",
"dayjs": "^1.11.19",
"tdesign-miniprogram": "^1.12.1"
},
"devDependencies": {
"miniprogram-api-typings": "^4.1.2",
"@types/big.js": "^6.2.2"
"@types/big.js": "^6.2.2",
"miniprogram-api-typings": "^4.1.2"
}
}