@sprucelabs/spruce-templates 14.28.4 → 14.28.5

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.
@@ -25,7 +25,9 @@ class SchemaFeature implements SkillFeature {
25
25
  }
26
26
 
27
27
  public execute = async () => {
28
- await this.loadSchemas();
28
+ if (process.env.SHOULD_VALIDATE_SCHEMAS_ON_BOOT !== 'false') {
29
+ await this.loadSchemas();
30
+ }
29
31
  this._isBooted = true
30
32
  this.bootHandler?.()
31
33
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "14.28.4",
6
+ "version": "14.28.5",
7
7
  "files": [
8
8
  "build/**/*",
9
9
  "tsconfig.json",
@@ -78,5 +78,5 @@
78
78
  "globby"
79
79
  ]
80
80
  },
81
- "gitHead": "378e6487a21c3bc526641b491e950e9f1e4f7eca"
81
+ "gitHead": "17c5f22c01c26e065a1d85beb2ce0a4a187a0d6b"
82
82
  }