@pronto-tools-and-more/pronto 8.18.0 → 8.19.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": "8.
|
3
|
+
"version": "8.19.0",
|
4
4
|
"description": "",
|
5
5
|
"main": "src/main.js",
|
6
6
|
"type": "module",
|
@@ -17,15 +17,15 @@
|
|
17
17
|
"@lvce-editor/ipc": "^11.1.0",
|
18
18
|
"@lvce-editor/json-rpc": "^5.0.0",
|
19
19
|
"@lvce-editor/verror": "^1.4.0",
|
20
|
-
"@pronto-tools-and-more/file-watcher": "8.
|
21
|
-
"@pronto-tools-and-more/files": "8.
|
22
|
-
"@pronto-tools-and-more/network-process": "8.
|
23
|
-
"@pronto-tools-and-more/sass-compiler": "8.
|
24
|
-
"@pronto-tools-and-more/components-renderer": "8.
|
25
|
-
"@pronto-tools-and-more/components": "8.
|
26
|
-
"@pronto-tools-and-more/schema-process": "8.
|
27
|
-
"@pronto-tools-and-more/diff-process": "8.
|
28
|
-
"@pronto-tools-and-more/type-checker": "8.
|
20
|
+
"@pronto-tools-and-more/file-watcher": "8.19.0",
|
21
|
+
"@pronto-tools-and-more/files": "8.19.0",
|
22
|
+
"@pronto-tools-and-more/network-process": "8.19.0",
|
23
|
+
"@pronto-tools-and-more/sass-compiler": "8.19.0",
|
24
|
+
"@pronto-tools-and-more/components-renderer": "8.19.0",
|
25
|
+
"@pronto-tools-and-more/components": "8.19.0",
|
26
|
+
"@pronto-tools-and-more/schema-process": "8.19.0",
|
27
|
+
"@pronto-tools-and-more/diff-process": "8.19.0",
|
28
|
+
"@pronto-tools-and-more/type-checker": "8.19.0",
|
29
29
|
"execa": "^9.5.1",
|
30
30
|
"express": "^4.21.1"
|
31
31
|
},
|
@@ -6,7 +6,6 @@ import * as SendUpdates from "../SendUpdates/SendUpdates.js";
|
|
6
6
|
|
7
7
|
export const handleFileChange = async (clients, event, root, errorColor) => {
|
8
8
|
const absolutePath = join(root, event.filename);
|
9
|
-
console.log("file change", absolutePath);
|
10
9
|
if (event.filename === "default/readmode/custom.css") {
|
11
10
|
const css = await readFile(absolutePath, "utf8");
|
12
11
|
const changes = [
|
@@ -1 +1 @@
|
|
1
|
-
export const version = '8.
|
1
|
+
export const version = '8.19.0'
|