@storm-software/workspace-tools 1.19.1 → 1.19.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.19.1",
3
+ "version": "1.19.2",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -28319,13 +28319,13 @@ var StormConfigSchema = objectType({
28319
28319
  worker: stringType().trim().default("stormie-bot").describe(
28320
28320
  "The worker of the package (this is the bot that will be used to perform various tasks)"
28321
28321
  ),
28322
- env: enumType(["development", "staging", "production"]).default("development").describe("The current runtime environment of the package"),
28323
- ci: booleanType().default(false).describe(
28322
+ env: enumType(["development", "staging", "production"]).default("production").describe("The current runtime environment of the package"),
28323
+ ci: booleanType().default(true).describe(
28324
28324
  "An indicator specifying if the current environment is a CI environment"
28325
28325
  ),
28326
28326
  workspaceRoot: stringType().trim().describe("The root directory of the workspace"),
28327
28327
  packageDirectory: stringType().trim().optional().describe("The root directory of the package"),
28328
- buildDirectory: stringType().trim().optional().describe("The build directory for the workspace"),
28328
+ buildDirectory: stringType().trim().default("dist").describe("The build directory for the workspace"),
28329
28329
  runtimeDirectory: stringType().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
28330
28330
  runtimeVersion: stringType().trim().regex(
28331
28331
  /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/