@valbuild/server 0.68.1 → 0.68.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.
@@ -3075,7 +3075,8 @@ class ValOpsFS extends ValOps {
3075
3075
 
3076
3076
  // #region profiles
3077
3077
  async getProfiles() {
3078
- throw new Error("Configuration error: cannot get profiles in local / development file system mode");
3078
+ // We do not have profiles in FS mode
3079
+ return [];
3079
3080
  }
3080
3081
 
3081
3082
  // #region fs file path helpers
@@ -3075,7 +3075,8 @@ class ValOpsFS extends ValOps {
3075
3075
 
3076
3076
  // #region profiles
3077
3077
  async getProfiles() {
3078
- throw new Error("Configuration error: cannot get profiles in local / development file system mode");
3078
+ // We do not have profiles in FS mode
3079
+ return [];
3079
3080
  }
3080
3081
 
3081
3082
  // #region fs file path helpers
@@ -3046,7 +3046,8 @@ class ValOpsFS extends ValOps {
3046
3046
 
3047
3047
  // #region profiles
3048
3048
  async getProfiles() {
3049
- throw new Error("Configuration error: cannot get profiles in local / development file system mode");
3049
+ // We do not have profiles in FS mode
3050
+ return [];
3050
3051
  }
3051
3052
 
3052
3053
  // #region fs file path helpers
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "./package.json": "./package.json"
13
13
  },
14
14
  "types": "dist/valbuild-server.cjs.d.ts",
15
- "version": "0.68.1",
15
+ "version": "0.68.2",
16
16
  "scripts": {
17
17
  "typecheck": "tsc --noEmit",
18
18
  "test": "jest",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@valbuild/core": "~0.68.0",
27
27
  "@valbuild/shared": "~0.68.1",
28
- "@valbuild/ui": "~0.68.1",
28
+ "@valbuild/ui": "~0.68.2",
29
29
  "chokidar": "^4.0.1",
30
30
  "image-size": "^1.0.2",
31
31
  "minimatch": "^3.0.4",