Rebuild dist

This commit is contained in:
Nick Alteen
2025-07-15 15:08:00 -04:00
parent 12e4e8b26d
commit 15ecaf52fe
3 changed files with 8 additions and 3 deletions
Generated Vendored
+6 -2
View File
@@ -35,11 +35,15 @@ function getDefaultExportFromCjs (x) {
} }
function getAugmentedNamespace(n) { function getAugmentedNamespace(n) {
if (n.__esModule) return n; if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;
var f = n.default; var f = n.default;
if (typeof f == "function") { if (typeof f == "function") {
var a = function a () { var a = function a () {
if (this instanceof a) { var isInstance = false;
try {
isInstance = this instanceof a;
} catch {}
if (isInstance) {
return Reflect.construct(f, arguments, this.constructor); return Reflect.construct(f, arguments, this.constructor);
} }
return f.apply(this, arguments); return f.apply(this, arguments);
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+1
View File
@@ -6,6 +6,7 @@
"declarationMap": false, "declarationMap": false,
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["ES2022"], "lib": ["ES2022"],
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",