@pronto-tools-and-more/pronto 14.39.0 → 14.41.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pronto-tools-and-more/pronto",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.41.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"type": "module",
|
|
@@ -14,27 +14,27 @@
|
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@lvce-editor/assert": "^1.3.0",
|
|
17
|
-
"@lvce-editor/ipc": "^13.
|
|
17
|
+
"@lvce-editor/ipc": "^13.8.0",
|
|
18
18
|
"@lvce-editor/json-rpc": "^5.4.0",
|
|
19
19
|
"@lvce-editor/verror": "^1.6.0",
|
|
20
|
-
"@pronto-tools-and-more/api": "14.
|
|
21
|
-
"@pronto-tools-and-more/components-renderer": "14.
|
|
22
|
-
"@pronto-tools-and-more/components": "14.
|
|
23
|
-
"@pronto-tools-and-more/custom-js-functions": "14.
|
|
24
|
-
"@pronto-tools-and-more/diff-process": "14.
|
|
25
|
-
"@pronto-tools-and-more/file-watcher": "14.
|
|
26
|
-
"@pronto-tools-and-more/files": "14.
|
|
27
|
-
"@pronto-tools-and-more/network-process": "14.
|
|
28
|
-
"@pronto-tools-and-more/sass-compiler": "14.
|
|
29
|
-
"@pronto-tools-and-more/schema-process": "14.
|
|
30
|
-
"@pronto-tools-and-more/type-checker": "14.
|
|
20
|
+
"@pronto-tools-and-more/api": "14.41.0",
|
|
21
|
+
"@pronto-tools-and-more/components-renderer": "14.41.0",
|
|
22
|
+
"@pronto-tools-and-more/components": "14.41.0",
|
|
23
|
+
"@pronto-tools-and-more/custom-js-functions": "14.41.0",
|
|
24
|
+
"@pronto-tools-and-more/diff-process": "14.41.0",
|
|
25
|
+
"@pronto-tools-and-more/file-watcher": "14.41.0",
|
|
26
|
+
"@pronto-tools-and-more/files": "14.41.0",
|
|
27
|
+
"@pronto-tools-and-more/network-process": "14.41.0",
|
|
28
|
+
"@pronto-tools-and-more/sass-compiler": "14.41.0",
|
|
29
|
+
"@pronto-tools-and-more/schema-process": "14.41.0",
|
|
30
|
+
"@pronto-tools-and-more/type-checker": "14.41.0",
|
|
31
31
|
"execa": "^9.5.2",
|
|
32
32
|
"express": "^4.21.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/express": "^5.0.1",
|
|
36
|
-
"@types/node": "^22.
|
|
37
|
-
"@types/ws": "^8.18.
|
|
36
|
+
"@types/node": "^22.14.0",
|
|
37
|
+
"@types/ws": "^8.18.1",
|
|
38
38
|
"jest": "^29.7.0"
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -15,12 +15,17 @@ export const getViewsResponse = async ({
|
|
|
15
15
|
leanDom,
|
|
16
16
|
}) => {
|
|
17
17
|
if (reactComponents) {
|
|
18
|
-
|
|
18
|
+
let content = await HandleViewsReactComponents.handleViewsReactComponents(
|
|
19
19
|
storeFrontPath,
|
|
20
20
|
pathPrefix,
|
|
21
21
|
isBuild,
|
|
22
22
|
leanDom
|
|
23
23
|
);
|
|
24
|
+
|
|
25
|
+
if (resourceDynamicUrlsInViewsJson && !isBuild) {
|
|
26
|
+
const replacement = "";
|
|
27
|
+
content = content.replaceAll("resource://dynamic", replacement);
|
|
28
|
+
}
|
|
24
29
|
if (hotReload) {
|
|
25
30
|
// TODO optimize this code for react components, don't parse and stringify so often
|
|
26
31
|
ViewsState.set(JSON.parse(content));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '14.
|
|
1
|
+
export const version = '14.41.0'
|