@geode/opengeodeweb-front 10.12.0-rc.1 → 10.12.0-rc.2
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.
|
@@ -45,15 +45,6 @@ async function runScript(
|
|
|
45
45
|
child.stdout.on("data", (data) => console.log(`[${execName}] ${data.toString()}`));
|
|
46
46
|
child.stderr.on("data", (data) => console.log(`[${execName}] ${data.toString()}`));
|
|
47
47
|
|
|
48
|
-
child.on("error", async (error) => {
|
|
49
|
-
const electron = await import("electron");
|
|
50
|
-
electron.dialog.showMessageBox({
|
|
51
|
-
title: "Title",
|
|
52
|
-
type: "warning",
|
|
53
|
-
message: `Error occured.\r\n${error}`,
|
|
54
|
-
});
|
|
55
|
-
});
|
|
56
|
-
|
|
57
48
|
child.on("close", (code) => console.log(`[${execName}] exited with code ${code}`));
|
|
58
49
|
child.on("kill", () => {
|
|
59
50
|
console.log(`[${execName}] process killed`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geode/opengeodeweb-front",
|
|
3
|
-
"version": "10.12.0-rc.
|
|
3
|
+
"version": "10.12.0-rc.2",
|
|
4
4
|
"description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
|
|
5
5
|
"homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
|
|
6
6
|
"bugs": {
|
|
@@ -84,9 +84,6 @@
|
|
|
84
84
|
"vitest-environment-nuxt": "1.0.1",
|
|
85
85
|
"vitest-indexeddb": "0.0.1"
|
|
86
86
|
},
|
|
87
|
-
"peerDependencies": {
|
|
88
|
-
"electron": "36.4.0"
|
|
89
|
-
},
|
|
90
87
|
"overrides": {
|
|
91
88
|
"vue": "latest"
|
|
92
89
|
}
|