@storm-software/config-tools 1.67.0 → 1.68.0

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/config-tools",
3
- "version": "1.67.0",
3
+ "version": "1.68.0",
4
4
  "description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -5649,9 +5649,6 @@ var StormConfigSchema = z.object({
5649
5649
  "The worker of the package (this is the bot that will be used to perform various tasks)"
5650
5650
  ),
5651
5651
  env: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment of the package"),
5652
- ci: z.boolean().default(true).describe(
5653
- "An indicator specifying if the current environment is a CI environment"
5654
- ),
5655
5652
  workspaceRoot: z.string().trim().default("").describe("The root directory of the workspace"),
5656
5653
  packageDirectory: z.string().trim().optional().describe("The root directory of the package"),
5657
5654
  externalPackagePatterns: z.array(z.string()).default([]).describe(
@@ -5735,7 +5732,6 @@ var DEFAULT_STORM_CONFIG = {
5735
5732
  env: "production",
5736
5733
  branch: "main",
5737
5734
  organization: "storm-software",
5738
- ci: true,
5739
5735
  configFile: null,
5740
5736
  runtimeVersion: "1.0.0",
5741
5737
  colors: { ...DEFAULT_COLOR_CONFIG },
@@ -5633,9 +5633,6 @@ var StormConfigSchema = z.object({
5633
5633
  "The worker of the package (this is the bot that will be used to perform various tasks)"
5634
5634
  ),
5635
5635
  env: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment of the package"),
5636
- ci: z.boolean().default(true).describe(
5637
- "An indicator specifying if the current environment is a CI environment"
5638
- ),
5639
5636
  workspaceRoot: z.string().trim().default("").describe("The root directory of the workspace"),
5640
5637
  packageDirectory: z.string().trim().optional().describe("The root directory of the package"),
5641
5638
  externalPackagePatterns: z.array(z.string()).default([]).describe(
@@ -5719,7 +5716,6 @@ var DEFAULT_STORM_CONFIG = {
5719
5716
  env: "production",
5720
5717
  branch: "main",
5721
5718
  organization: "storm-software",
5722
- ci: true,
5723
5719
  configFile: null,
5724
5720
  runtimeVersion: "1.0.0",
5725
5721
  colors: { ...DEFAULT_COLOR_CONFIG },