@pronto-tools-and-more/pronto 13.8.0 → 13.10.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": "13.8.0",
3
+ "version": "13.10.0",
4
4
  "description": "",
5
5
  "main": "src/main.js",
6
6
  "type": "module",
@@ -17,17 +17,17 @@
17
17
  "@lvce-editor/ipc": "^13.7.0",
18
18
  "@lvce-editor/json-rpc": "^5.4.0",
19
19
  "@lvce-editor/verror": "^1.6.0",
20
- "@pronto-tools-and-more/api": "13.8.0",
21
- "@pronto-tools-and-more/components-renderer": "13.8.0",
22
- "@pronto-tools-and-more/components": "13.8.0",
23
- "@pronto-tools-and-more/custom-js-functions": "13.8.0",
24
- "@pronto-tools-and-more/diff-process": "13.8.0",
25
- "@pronto-tools-and-more/file-watcher": "13.8.0",
26
- "@pronto-tools-and-more/files": "13.8.0",
27
- "@pronto-tools-and-more/network-process": "13.8.0",
28
- "@pronto-tools-and-more/sass-compiler": "13.8.0",
29
- "@pronto-tools-and-more/schema-process": "13.8.0",
30
- "@pronto-tools-and-more/type-checker": "13.8.0",
20
+ "@pronto-tools-and-more/api": "13.10.0",
21
+ "@pronto-tools-and-more/components-renderer": "13.10.0",
22
+ "@pronto-tools-and-more/components": "13.10.0",
23
+ "@pronto-tools-and-more/custom-js-functions": "13.10.0",
24
+ "@pronto-tools-and-more/diff-process": "13.10.0",
25
+ "@pronto-tools-and-more/file-watcher": "13.10.0",
26
+ "@pronto-tools-and-more/files": "13.10.0",
27
+ "@pronto-tools-and-more/network-process": "13.10.0",
28
+ "@pronto-tools-and-more/sass-compiler": "13.10.0",
29
+ "@pronto-tools-and-more/schema-process": "13.10.0",
30
+ "@pronto-tools-and-more/type-checker": "13.10.0",
31
31
  "execa": "^9.5.2",
32
32
  "express": "^4.21.2"
33
33
  },
@@ -122,6 +122,14 @@ export const create = ({
122
122
  injectCustomJs,
123
123
  })
124
124
  );
125
+ app.get(
126
+ "/storefront/assets/scripts/custom.server.js",
127
+ HandleCustomServer.handleCustomServerJs({
128
+ storeFrontPath,
129
+ filesPath: FilesPath.filesPath,
130
+ injectCustomJs,
131
+ })
132
+ );
125
133
  app.use("/api", HandleApi.handleApi({ appId, apiUrl }));
126
134
  app.use("/prod-api", HandleApi.handleApi({ appId: releaseAppId, apiUrl }));
127
135
  app.use("*", HandleCss.handleCss(storeFrontPath, rootSassFile));
@@ -1 +1 @@
1
- export const version = '13.8.0'
1
+ export const version = '13.10.0'