@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.
@@ -60,6 +60,7 @@ const headers = [
60
60
  { title: "Name", align: "end", key: "name" },
61
61
  ];
62
62
 
63
+ // oxlint-disable-next-line no-top-level-await
63
64
  await get_crs_table();
64
65
  </script>
65
66
 
@@ -54,6 +54,7 @@ function update_values(output_geode_object, output_extension) {
54
54
  }
55
55
  }
56
56
 
57
+ // oxlint-disable-next-line no-top-level-await
57
58
  await get_output_file_extensions();
58
59
  </script>
59
60
 
@@ -52,6 +52,7 @@ async function get_allowed_files() {
52
52
  toggle_loading();
53
53
  }
54
54
 
55
+ // oxlint-disable-next-line no-top-level-await
55
56
  await get_allowed_files();
56
57
  </script>
57
58
 
@@ -72,6 +72,7 @@ async function missing_files() {
72
72
  toggle_loading();
73
73
  }
74
74
 
75
+ // oxlint-disable-next-line no-top-level-await
75
76
  await missing_files();
76
77
  </script>
77
78
 
@@ -101,6 +101,7 @@ function set_geode_object(geode_object_type) {
101
101
  emit("increment_step");
102
102
  }
103
103
  }
104
+ // oxlint-disable-next-line no-top-level-await
104
105
  await get_allowed_objects();
105
106
  </script>
106
107
 
@@ -28,7 +28,7 @@ watch(
28
28
  }
29
29
  },
30
30
  );
31
-
31
+ // oxlint-disable-next-line no-top-level-await
32
32
  await get_packages_versions();
33
33
  </script>
34
34
 
@@ -56,7 +56,7 @@ class Database extends BaseDatabase {
56
56
  }
57
57
  }
58
58
  }
59
-
59
+ // oxlint-disable-next-line no-top-level-await
60
60
  await Dexie.delete("Database");
61
61
  const databaseContainer = { instance: new Database() };
62
62
  databaseContainer.instance.clear();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.28.0-rc.8",
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
  },
@@ -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",