brick-engine-js 1.0.5 → 1.0.6
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/dist/app.js +18 -15
- package/dist/app.js.map +1 -1
- package/dist/bootstrap.d.ts +0 -1
- package/dist/brick-engine.js +18 -15
- package/dist/brick-engine.js.map +1 -1
- package/dist/docs/GAME_DEVELOPER_GUIDE.html +1 -1
- package/dist/docs/brick-engine-guide.html +1 -1
- package/dist/docs/getting-started.html +1 -1
- package/dist/docs/jsdoc_standard.html +1 -1
- package/dist/docs/publishing.html +1 -1
- package/dist/docs/reference/interfaces/modules/Session.html +1 -1
- package/dist/docs/reference/modules/GameMenu.html +1 -1
- package/dist/docs/reference/modules/GameSession.html +1 -1
- package/dist/docs/reference/modules/InitialStateSnapshot.html +1 -1
- package/dist/docs/reference/modules/SessionModal.html +1 -1
- package/dist/docs/testing_best_practices.html +1 -1
- package/package.json +1 -1
- package/public/docs/GAME_DEVELOPER_GUIDE.html +1 -1
- package/public/docs/brick-engine-guide.html +1 -1
- package/public/docs/getting-started.html +1 -1
- package/public/docs/jsdoc_standard.html +1 -1
- package/public/docs/publishing.html +1 -1
- package/public/docs/reference/interfaces/modules/Session.html +1 -1
- package/public/docs/reference/modules/GameMenu.html +1 -1
- package/public/docs/reference/modules/GameSession.html +1 -1
- package/public/docs/reference/modules/InitialStateSnapshot.html +1 -1
- package/public/docs/reference/modules/SessionModal.html +1 -1
- package/public/docs/testing_best_practices.html +1 -1
- package/dist/config/styles.d.ts +0 -0
- package/dist/index.test.d.ts +0 -1
package/dist/app.js
CHANGED
|
@@ -79,18 +79,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79
79
|
// extracted by mini-css-extract-plugin
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
/***/ },
|
|
83
|
-
|
|
84
|
-
/***/ 257
|
|
85
|
-
(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Dynamically load all CSS files from the public/style directory.
|
|
89
|
-
* This allows Webpack to bundle them without needing explicit imports for each file.
|
|
90
|
-
*/
|
|
91
|
-
__webpack_require__(881);
|
|
92
|
-
|
|
93
|
-
|
|
94
82
|
/***/ },
|
|
95
83
|
|
|
96
84
|
/***/ 881
|
|
@@ -128,6 +116,21 @@ webpackContext.id = 881;
|
|
|
128
116
|
|
|
129
117
|
/***/ },
|
|
130
118
|
|
|
119
|
+
/***/ 589
|
|
120
|
+
(module) {
|
|
121
|
+
|
|
122
|
+
function webpackEmptyContext(req) {
|
|
123
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
124
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
125
|
+
throw e;
|
|
126
|
+
}
|
|
127
|
+
webpackEmptyContext.keys = () => ([]);
|
|
128
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
129
|
+
webpackEmptyContext.id = 589;
|
|
130
|
+
module.exports = webpackEmptyContext;
|
|
131
|
+
|
|
132
|
+
/***/ },
|
|
133
|
+
|
|
131
134
|
/***/ 991
|
|
132
135
|
(module) {
|
|
133
136
|
|
|
@@ -4886,8 +4889,6 @@ var GameMenu = /** @class */ (function (_super) {
|
|
|
4886
4889
|
}(core_Game));
|
|
4887
4890
|
/* harmony default export */ const menu_GameMenu = (GameMenu);
|
|
4888
4891
|
|
|
4889
|
-
// EXTERNAL MODULE: ./src/config/styles.ts
|
|
4890
|
-
var styles = __webpack_require__(257);
|
|
4891
4892
|
;// ./src/menu/GameMenuSingleton.ts
|
|
4892
4893
|
/**
|
|
4893
4894
|
* Singleton manager for the Game Menu instance.
|
|
@@ -4933,7 +4934,6 @@ var GameMenuSingleton = /** @class */ (function () {
|
|
|
4933
4934
|
|
|
4934
4935
|
|
|
4935
4936
|
|
|
4936
|
-
|
|
4937
4937
|
var _game;
|
|
4938
4938
|
var _p;
|
|
4939
4939
|
/**
|
|
@@ -4986,6 +4986,9 @@ var _switchHandler = function (newGame) {
|
|
|
4986
4986
|
* @returns {p5} The p5 instance.
|
|
4987
4987
|
*/
|
|
4988
4988
|
function bootstrap(ClientGame) {
|
|
4989
|
+
if (typeof __webpack_require__(589).context === 'function') {
|
|
4990
|
+
__webpack_require__(881);
|
|
4991
|
+
}
|
|
4989
4992
|
return new (external_p5_default())(function (p) {
|
|
4990
4993
|
_p = p;
|
|
4991
4994
|
var view = new view_GameView(p, document.body);
|