@geode/opengeodeweb-front 10.28.0-rc.8 → 10.28.1-rc.1
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/app/components/CrsSelector.vue +1 -0
- package/app/components/ExtensionSelector.vue +1 -0
- package/app/components/FileSelector.vue +1 -0
- package/app/components/MissingFilesSelector.vue +1 -0
- package/app/components/ObjectSelector.vue +1 -0
- package/app/components/PackagesVersions.vue +1 -1
- package/internal/database/database.js +1 -1
- package/package.json +3 -3
- package/tests/vitest.config.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geode/opengeodeweb-front",
|
|
3
|
-
"version": "10.28.
|
|
3
|
+
"version": "10.28.1-rc.1",
|
|
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": {
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"build:microservices": "concurrently \"npm run build:back\" \"npm run build:viewer\"",
|
|
29
29
|
"test": "npm run test:unit",
|
|
30
30
|
"tests": "vitest --config ./tests/vitest.config.js",
|
|
31
|
-
"test:unit": "npm run tests --project unit",
|
|
32
|
-
"test:integration": "npm run tests --project integration",
|
|
31
|
+
"test:unit": "npm run tests -- --project unit",
|
|
32
|
+
"test:integration": "npm run tests -- --project integration",
|
|
33
33
|
"geode_objects": "node scripts/generate_geode_objects.js && prettier ./assets/geode_objects.js --write",
|
|
34
34
|
"build": ""
|
|
35
35
|
},
|
package/tests/vitest.config.js
CHANGED
|
@@ -25,6 +25,7 @@ export default defineConfig({
|
|
|
25
25
|
test: {
|
|
26
26
|
setupFiles: [path.resolve(__dirname, "./setup_indexeddb.js")],
|
|
27
27
|
projects: [
|
|
28
|
+
// oxlint-disable-next-line no-top-level-await
|
|
28
29
|
await defineVitestProject({
|
|
29
30
|
test: {
|
|
30
31
|
name: "unit",
|
|
@@ -41,6 +42,7 @@ export default defineConfig({
|
|
|
41
42
|
retry: globalRetry,
|
|
42
43
|
},
|
|
43
44
|
}),
|
|
45
|
+
// oxlint-disable-next-line no-top-level-await
|
|
44
46
|
await defineVitestProject({
|
|
45
47
|
test: {
|
|
46
48
|
name: "integration",
|