excalibur 0.26.0-alpha.401 → 0.26.0-alpha.402
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dist/excalibur.js +30 -10
- package/build/dist/excalibur.js.map +1 -1
- package/build/dist/excalibur.min.js +1 -1
- package/build/dist/excalibur.min.js.LICENSE.txt +1 -1
- package/build/dist/excalibur.min.js.map +1 -1
- package/build/dist/index.js +2 -2
- package/build/esm/excalibur.js +30 -10
- package/build/esm/excalibur.js.map +1 -1
- package/build/esm/excalibur.min.js +1 -1
- package/build/esm/excalibur.min.js.LICENSE.txt +1 -1
- package/build/esm/excalibur.min.js.map +1 -1
- package/package.json +2 -2
package/build/dist/excalibur.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* excalibur - 0.26.0-alpha.
|
|
2
|
+
* excalibur - 0.26.0-alpha.402+8547c2c - 2022-2-5
|
|
3
3
|
* https://github.com/excaliburjs/Excalibur
|
|
4
4
|
* Copyright (c) 2022 Excalibur.js <https://github.com/excaliburjs/Excalibur/graphs/contributors>
|
|
5
5
|
* Licensed BSD-2-Clause
|
|
@@ -546,14 +546,30 @@ module.exports = function (exec) {
|
|
|
546
546
|
};
|
|
547
547
|
|
|
548
548
|
|
|
549
|
+
/***/ }),
|
|
550
|
+
|
|
551
|
+
/***/ 7188:
|
|
552
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
553
|
+
|
|
554
|
+
var fails = __webpack_require__(4229);
|
|
555
|
+
|
|
556
|
+
module.exports = !fails(function () {
|
|
557
|
+
var test = (function () { /* empty */ }).bind();
|
|
558
|
+
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
559
|
+
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
560
|
+
});
|
|
561
|
+
|
|
562
|
+
|
|
549
563
|
/***/ }),
|
|
550
564
|
|
|
551
565
|
/***/ 266:
|
|
552
|
-
/***/ ((module) => {
|
|
566
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
567
|
+
|
|
568
|
+
var NATIVE_BIND = __webpack_require__(7188);
|
|
553
569
|
|
|
554
570
|
var call = Function.prototype.call;
|
|
555
571
|
|
|
556
|
-
module.exports =
|
|
572
|
+
module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
557
573
|
return call.apply(call, arguments);
|
|
558
574
|
};
|
|
559
575
|
|
|
@@ -585,14 +601,16 @@ module.exports = {
|
|
|
585
601
|
/***/ }),
|
|
586
602
|
|
|
587
603
|
/***/ 5968:
|
|
588
|
-
/***/ ((module) => {
|
|
604
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
605
|
+
|
|
606
|
+
var NATIVE_BIND = __webpack_require__(7188);
|
|
589
607
|
|
|
590
608
|
var FunctionPrototype = Function.prototype;
|
|
591
609
|
var bind = FunctionPrototype.bind;
|
|
592
610
|
var call = FunctionPrototype.call;
|
|
593
|
-
var uncurryThis =
|
|
611
|
+
var uncurryThis = NATIVE_BIND && bind.bind(call, call);
|
|
594
612
|
|
|
595
|
-
module.exports =
|
|
613
|
+
module.exports = NATIVE_BIND ? function (fn) {
|
|
596
614
|
return fn && uncurryThis(fn);
|
|
597
615
|
} : function (fn) {
|
|
598
616
|
return fn && function () {
|
|
@@ -688,7 +706,7 @@ var DESCRIPTORS = __webpack_require__(7400);
|
|
|
688
706
|
var fails = __webpack_require__(4229);
|
|
689
707
|
var createElement = __webpack_require__(2635);
|
|
690
708
|
|
|
691
|
-
//
|
|
709
|
+
// Thanks to IE8 for its funny defineProperty
|
|
692
710
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
693
711
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
694
712
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
@@ -1312,9 +1330,11 @@ var store = __webpack_require__(5353);
|
|
|
1312
1330
|
(module.exports = function (key, value) {
|
|
1313
1331
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1314
1332
|
})('versions', []).push({
|
|
1315
|
-
version: '3.
|
|
1333
|
+
version: '3.21.0',
|
|
1316
1334
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1317
|
-
copyright: '© 2022 Denis Pushkarev (zloirock.ru)'
|
|
1335
|
+
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
1336
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.21.0/LICENSE',
|
|
1337
|
+
source: 'https://github.com/zloirock/core-js'
|
|
1318
1338
|
});
|
|
1319
1339
|
|
|
1320
1340
|
|
|
@@ -30180,7 +30200,7 @@ Promises_Promise = Promise_1 = Promises_decorate([
|
|
|
30180
30200
|
* The current Excalibur version string
|
|
30181
30201
|
* @description `process.env.__EX_VERSION` gets replaced by Webpack on build
|
|
30182
30202
|
*/
|
|
30183
|
-
const EX_VERSION = "0.26.0-alpha.
|
|
30203
|
+
const EX_VERSION = "0.26.0-alpha.402+8547c2c";
|
|
30184
30204
|
|
|
30185
30205
|
polyfill();
|
|
30186
30206
|
// This file is used as the bundle entry point and exports everything
|