@journeyapps-labs/lib-reactor-server 1.1.4 → 1.1.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/reactor-html.js +3 -0
- package/package.json +3 -3
package/dist/reactor-html.js
CHANGED
|
@@ -103,6 +103,9 @@ const createModuleLoaderContentTransformer = ($, modules) => {
|
|
|
103
103
|
window.addEventListener('DOMContentLoaded', async (event) => {
|
|
104
104
|
// get all the reactor module classes
|
|
105
105
|
const module_classes = ${JSON.stringify(module_names_window)}.map(m => {
|
|
106
|
+
if(!window[m]){
|
|
107
|
+
console.error('Module: ' + m +' was not loaded correctly.');
|
|
108
|
+
}
|
|
106
109
|
return window[m].default;
|
|
107
110
|
});
|
|
108
111
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@journeyapps-labs/lib-reactor-server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"cheerio": "^1.1.2",
|
|
18
18
|
"express": "^5.1.0",
|
|
19
19
|
"lodash": "^4.17.21",
|
|
20
|
-
"ua-parser-js": "2.0.
|
|
21
|
-
"@journeyapps-labs/lib-reactor-utils": "2.0.
|
|
20
|
+
"ua-parser-js": "2.0.5",
|
|
21
|
+
"@journeyapps-labs/lib-reactor-utils": "2.0.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/express": "^5.0.3",
|