excalibur 0.26.0-alpha.279 → 0.26.0-alpha.283
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 +6 -6
- 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 +6 -6
- 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 +5 -5
package/build/dist/excalibur.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* excalibur - 0.26.0-alpha.
|
|
2
|
+
* excalibur - 0.26.0-alpha.283+b4eae4b - 2021-11-2
|
|
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
|
|
@@ -1720,8 +1720,8 @@ module.exports = function (cssWithMappingToString) {
|
|
|
1720
1720
|
var alreadyImportedModules = {};
|
|
1721
1721
|
|
|
1722
1722
|
if (dedupe) {
|
|
1723
|
-
for (var
|
|
1724
|
-
var id = this[
|
|
1723
|
+
for (var k = 0; k < this.length; k++) {
|
|
1724
|
+
var id = this[k][0];
|
|
1725
1725
|
|
|
1726
1726
|
if (id != null) {
|
|
1727
1727
|
alreadyImportedModules[id] = true;
|
|
@@ -1729,8 +1729,8 @@ module.exports = function (cssWithMappingToString) {
|
|
|
1729
1729
|
}
|
|
1730
1730
|
}
|
|
1731
1731
|
|
|
1732
|
-
for (var
|
|
1733
|
-
var item = [].concat(modules[
|
|
1732
|
+
for (var _k = 0; _k < modules.length; _k++) {
|
|
1733
|
+
var item = [].concat(modules[_k]);
|
|
1734
1734
|
|
|
1735
1735
|
if (dedupe && alreadyImportedModules[item[0]]) {
|
|
1736
1736
|
continue;
|
|
@@ -28617,7 +28617,7 @@ Promises_Promise = Promise_1 = Promises_decorate([
|
|
|
28617
28617
|
* The current Excalibur version string
|
|
28618
28618
|
* @description `process.env.__EX_VERSION` gets replaced by Webpack on build
|
|
28619
28619
|
*/
|
|
28620
|
-
const EX_VERSION = "0.26.0-alpha.
|
|
28620
|
+
const EX_VERSION = "0.26.0-alpha.283+b4eae4b";
|
|
28621
28621
|
|
|
28622
28622
|
polyfill();
|
|
28623
28623
|
// This file is used as the bundle entry point and exports everything
|