Changes UMD callsite to be more likely to pass in the intended… (#10477)
* Changes UMD callsite to be more likely to pass in the intended object. Fixes #10476 Note: This PR should be considered pseudocode and used as an illustration of the proposed fix. I do not know nearly enough about this project to know if this is an appropriate solution to the problem, nor do I have the confidence to update the tests appropriately. * Update tests
This commit is contained in:
parent
143d159982
commit
198b4a0fbd
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -27,7 +27,11 @@ const buildWrapper = template(`
|
||||
|
||||
GLOBAL_TO_ASSIGN;
|
||||
}
|
||||
})(this, function(IMPORT_NAMES) {
|
||||
})(
|
||||
typeof globalThis === "object" ? globalThis
|
||||
: typeof self === "object" ? self
|
||||
: this,
|
||||
function(IMPORT_NAMES) {
|
||||
})
|
||||
`);
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory();
|
||||
global.myCustomModuleName = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.evens);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _evens) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _evens) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||
"use strict";
|
||||
|
||||
_foo = babelHelpers.interopRequireDefault(_foo);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBAR, global.fooBAR, global.fizzBuzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBar, global.fooBar, global.fizzbuzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBAR, global.mylib.fooBar, global.fizz.buzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBar, global.mylibFooBar, global.fizzbuzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (foo) {
|
||||
"use strict";
|
||||
|
||||
foo = babelHelpers.interopRequireWildcard(foo);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||
"use strict";
|
||||
|
||||
_foo = babelHelpers.interopRequireWildcard(_foo);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||
"use strict";
|
||||
|
||||
_foo.bar;
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory(global.foo, global.fooBar, global.fooBar);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo, _fooBar, _fooBar2) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo, _fooBar, _fooBar2) {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
global.foo = global.foo || {};
|
||||
global.foo.bar = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
global.foo.bar.baz = global.foo.bar.baz || {};
|
||||
global.foo.bar.baz.qux = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.baz = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory();
|
||||
global.MyLib = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||
"use strict";
|
||||
|
||||
foobar();
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.looseModuleNameWithOverriddenGlobalInput = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory();
|
||||
global.looseModuleNameInput = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||
"use strict";
|
||||
|
||||
foobar();
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory(global.render);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_render) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_render) {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory(global.Promise);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_es6Promise) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_es6Promise) {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo, global.fooBar, global.fooBar);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, foo2, _fooBar, _fooBar2) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, foo2, _fooBar, _fooBar2) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
_exports.__esModule = true;
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory();
|
||||
global.myCustomModuleName = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.evens);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, _evens) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _evens) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||
"use strict";
|
||||
|
||||
_foo = babelHelpers.interopRequireDefault(_foo);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBAR, global.fooBAR, global.fizzBuzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBar, global.fooBar, global.fizzbuzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBAR, global.mylib.fooBar, global.fizz.buzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.fooBar, global.mylibFooBar, global.fizzbuzz);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||
"use strict";
|
||||
|
||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (foo) {
|
||||
"use strict";
|
||||
|
||||
foo = babelHelpers.interopRequireWildcard(foo);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||
"use strict";
|
||||
|
||||
_foo = babelHelpers.interopRequireWildcard(_foo);
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(global.foo);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||
"use strict";
|
||||
|
||||
_foo.bar;
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory(global.foo, global.fooBar, global.fooBar);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_foo, _fooBar, _fooBar2) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo, _fooBar, _fooBar2) {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
global.foo = global.foo || {};
|
||||
global.foo.bar = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
global.foo.bar.baz = global.foo.bar.baz || {};
|
||||
global.foo.bar.baz.qux = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.baz = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory();
|
||||
global.MyLib = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||
"use strict";
|
||||
|
||||
foobar();
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.umdModuleNameWithOverriddenGlobalInput = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory();
|
||||
global.umdModuleNameInput = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||
"use strict";
|
||||
|
||||
foobar();
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory(global.render);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_render) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_render) {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,6 +10,6 @@
|
||||
factory(global.Promise);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_es6Promise) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_es6Promise) {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports, global.foo, global.fooBar, global.fooBar);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports, foo2, _fooBar, _fooBar2) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, foo2, _fooBar, _fooBar2) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
factory(mod.exports);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
(function (global, factory) {
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define([], factory);
|
||||
@ -10,7 +12,7 @@
|
||||
factory();
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
})((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === "object" ? globalThis : (typeof self === "undefined" ? "undefined" : _typeof(self)) === "object" ? self : this, function () {
|
||||
"use strict";
|
||||
|
||||
import("foo"); // warns
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
(function (global, factory) {
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define(["a"], factory);
|
||||
@ -10,7 +12,7 @@
|
||||
factory(global.a);
|
||||
global.input = mod.exports;
|
||||
}
|
||||
})(this, function (_a) {
|
||||
})((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === "object" ? globalThis : (typeof self === "undefined" ? "undefined" : _typeof(self)) === "object" ? self : this, function (_a) {
|
||||
"use strict";
|
||||
|
||||
_a = _interopRequireDefault(_a);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user