@geode/opengeodeweb-front 9.12.1-rc.1 → 9.12.1-rc.3
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
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
},
|
|
41
41
|
"description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
|
|
42
42
|
"type": "module",
|
|
43
|
-
"version": "9.12.1-rc.
|
|
43
|
+
"version": "9.12.1-rc.3",
|
|
44
44
|
"main": "./nuxt.config.js",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@geode/opengeodeweb-back": "
|
|
47
|
-
"@geode/opengeodeweb-viewer": "
|
|
46
|
+
"@geode/opengeodeweb-back": "next",
|
|
47
|
+
"@geode/opengeodeweb-viewer": "next",
|
|
48
48
|
"@kitware/vtk.js": "33.3.0",
|
|
49
49
|
"@mdi/font": "7.4.47",
|
|
50
50
|
"@pinia/nuxt": "0.5.4",
|
package/utils/local.js
CHANGED
|
@@ -118,7 +118,7 @@ async function run_back(
|
|
|
118
118
|
return new Promise(async (resolve, reject) => {
|
|
119
119
|
let upload_folder_path = args.upload_folder_path
|
|
120
120
|
if (!args.upload_folder_path) {
|
|
121
|
-
upload_folder_path = args.project_folder_path
|
|
121
|
+
upload_folder_path = path.join(args.project_folder_path, "uploads")
|
|
122
122
|
}
|
|
123
123
|
const port = await get_available_port()
|
|
124
124
|
const back_args = [
|