@pronto-tools-and-more/pronto 12.22.0 → 12.23.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": "12.
|
3
|
+
"version": "12.23.0",
|
4
4
|
"description": "",
|
5
5
|
"main": "src/main.js",
|
6
6
|
"type": "module",
|
@@ -17,16 +17,16 @@
|
|
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/file-watcher": "12.
|
21
|
-
"@pronto-tools-and-more/files": "12.
|
22
|
-
"@pronto-tools-and-more/network-process": "12.
|
23
|
-
"@pronto-tools-and-more/sass-compiler": "12.
|
24
|
-
"@pronto-tools-and-more/components-renderer": "12.
|
25
|
-
"@pronto-tools-and-more/components": "12.
|
26
|
-
"@pronto-tools-and-more/schema-process": "12.
|
27
|
-
"@pronto-tools-and-more/diff-process": "12.
|
28
|
-
"@pronto-tools-and-more/type-checker": "12.
|
29
|
-
"@pronto-tools-and-more/custom-js-functions": "12.
|
20
|
+
"@pronto-tools-and-more/file-watcher": "12.23.0",
|
21
|
+
"@pronto-tools-and-more/files": "12.23.0",
|
22
|
+
"@pronto-tools-and-more/network-process": "12.23.0",
|
23
|
+
"@pronto-tools-and-more/sass-compiler": "12.23.0",
|
24
|
+
"@pronto-tools-and-more/components-renderer": "12.23.0",
|
25
|
+
"@pronto-tools-and-more/components": "12.23.0",
|
26
|
+
"@pronto-tools-and-more/schema-process": "12.23.0",
|
27
|
+
"@pronto-tools-and-more/diff-process": "12.23.0",
|
28
|
+
"@pronto-tools-and-more/type-checker": "12.23.0",
|
29
|
+
"@pronto-tools-and-more/custom-js-functions": "12.23.0",
|
30
30
|
"execa": "^9.5.2",
|
31
31
|
"express": "^4.21.2"
|
32
32
|
},
|
@@ -29,7 +29,11 @@ export const typeCheck = async () => {
|
|
29
29
|
TypeCheckerProcess.dispose();
|
30
30
|
return;
|
31
31
|
}
|
32
|
-
|
32
|
+
if (errorCount === 1) {
|
33
|
+
console.info(`[pronto-type-checker] found ${errorCount} error`);
|
34
|
+
} else {
|
35
|
+
console.info(`[pronto-type-checker] found ${errorCount} errors`);
|
36
|
+
}
|
33
37
|
for (const error of errors) {
|
34
38
|
console.info(`Error File: ${error.fileName}:${error.rowIndex}`);
|
35
39
|
console.info(`Error Message: ${error.message}`);
|
@@ -1 +1 @@
|
|
1
|
-
export const version = '12.
|
1
|
+
export const version = '12.23.0'
|