excalibur 0.26.0-alpha.344 → 0.26.0-alpha.345
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 +7 -5
- package/build/dist/excalibur.js.map +1 -1
- package/build/dist/excalibur.min.js +2 -2
- package/build/dist/index.js +2 -2
- package/build/esm/excalibur.js +7 -5
- package/build/esm/excalibur.js.map +1 -1
- package/build/esm/excalibur.min.js +2 -2
- 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.345+5a7fe60 - 2021-12-23
|
|
3
3
|
* https://github.com/excaliburjs/Excalibur
|
|
4
4
|
* Copyright (c) 2021 Excalibur.js <https://github.com/excaliburjs/Excalibur/graphs/contributors>
|
|
5
5
|
* Licensed BSD-2-Clause
|
|
@@ -268,13 +268,15 @@ var ownKeys = __webpack_require__(4826);
|
|
|
268
268
|
var getOwnPropertyDescriptorModule = __webpack_require__(7933);
|
|
269
269
|
var definePropertyModule = __webpack_require__(1787);
|
|
270
270
|
|
|
271
|
-
module.exports = function (target, source) {
|
|
271
|
+
module.exports = function (target, source, exceptions) {
|
|
272
272
|
var keys = ownKeys(source);
|
|
273
273
|
var defineProperty = definePropertyModule.f;
|
|
274
274
|
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
275
275
|
for (var i = 0; i < keys.length; i++) {
|
|
276
276
|
var key = keys[i];
|
|
277
|
-
if (!hasOwn(target, key)
|
|
277
|
+
if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
|
|
278
|
+
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
279
|
+
}
|
|
278
280
|
}
|
|
279
281
|
};
|
|
280
282
|
|
|
@@ -1289,7 +1291,7 @@ var store = __webpack_require__(5353);
|
|
|
1289
1291
|
(module.exports = function (key, value) {
|
|
1290
1292
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1291
1293
|
})('versions', []).push({
|
|
1292
|
-
version: '3.
|
|
1294
|
+
version: '3.20.0',
|
|
1293
1295
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1294
1296
|
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
|
|
1295
1297
|
});
|
|
@@ -29171,7 +29173,7 @@ Promises_Promise = Promise_1 = Promises_decorate([
|
|
|
29171
29173
|
* The current Excalibur version string
|
|
29172
29174
|
* @description `process.env.__EX_VERSION` gets replaced by Webpack on build
|
|
29173
29175
|
*/
|
|
29174
|
-
const EX_VERSION = "0.26.0-alpha.
|
|
29176
|
+
const EX_VERSION = "0.26.0-alpha.345+5a7fe60";
|
|
29175
29177
|
|
|
29176
29178
|
polyfill();
|
|
29177
29179
|
// This file is used as the bundle entry point and exports everything
|