@pronto-tools-and-more/pronto 11.7.0 → 11.8.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/pronto",
3
- "version": "11.7.0",
3
+ "version": "11.8.0",
4
4
  "description": "",
5
5
  "main": "src/main.js",
6
6
  "type": "module",
@@ -17,16 +17,16 @@
17
17
  "@lvce-editor/ipc": "^11.7.0",
18
18
  "@lvce-editor/json-rpc": "^5.3.0",
19
19
  "@lvce-editor/verror": "^1.6.0",
20
- "@pronto-tools-and-more/file-watcher": "11.7.0",
21
- "@pronto-tools-and-more/files": "11.7.0",
22
- "@pronto-tools-and-more/network-process": "11.7.0",
23
- "@pronto-tools-and-more/sass-compiler": "11.7.0",
24
- "@pronto-tools-and-more/components-renderer": "11.7.0",
25
- "@pronto-tools-and-more/components": "11.7.0",
26
- "@pronto-tools-and-more/schema-process": "11.7.0",
27
- "@pronto-tools-and-more/diff-process": "11.7.0",
28
- "@pronto-tools-and-more/type-checker": "11.7.0",
29
- "@pronto-tools-and-more/custom-js-functions": "11.7.0",
20
+ "@pronto-tools-and-more/file-watcher": "11.8.0",
21
+ "@pronto-tools-and-more/files": "11.8.0",
22
+ "@pronto-tools-and-more/network-process": "11.8.0",
23
+ "@pronto-tools-and-more/sass-compiler": "11.8.0",
24
+ "@pronto-tools-and-more/components-renderer": "11.8.0",
25
+ "@pronto-tools-and-more/components": "11.8.0",
26
+ "@pronto-tools-and-more/schema-process": "11.8.0",
27
+ "@pronto-tools-and-more/diff-process": "11.8.0",
28
+ "@pronto-tools-and-more/type-checker": "11.8.0",
29
+ "@pronto-tools-and-more/custom-js-functions": "11.8.0",
30
30
  "execa": "^9.5.2",
31
31
  "express": "^4.21.2"
32
32
  },
@@ -91,6 +91,9 @@ export const create = ({
91
91
  );
92
92
  app.use("*", HandleCss.handleCss(storeFrontPath, rootSassFile));
93
93
  app.use(express.static(FilesPath.filesPath));
94
+ app.use(express.static(storeFrontPath));
95
+ app.use(express.static(defaultPath));
96
+ app.use(express.static(contentPath));
94
97
  if (mode === "slim") {
95
98
  app.use(
96
99
  express.static(
@@ -98,9 +101,6 @@ export const create = ({
98
101
  )
99
102
  );
100
103
  }
101
- app.use(express.static(storeFrontPath));
102
- app.use(express.static(defaultPath));
103
- app.use(express.static(contentPath));
104
104
  app.use(
105
105
  "/resources/web",
106
106
  ProxyPath.create({
@@ -1 +1 @@
1
- export const version = '11.7.0'
1
+ export const version = '11.8.0'