@storm-software/git-tools 2.71.0 → 2.72.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/CHANGELOG.md +6 -0
- package/bin/git.js +17 -4
- package/bin/post-checkout.js +17 -4
- package/bin/post-commit.js +17 -4
- package/bin/post-merge.js +17 -4
- package/bin/pre-commit.js +17 -4
- package/bin/pre-install.js +17 -4
- package/bin/pre-push.js +17 -4
- package/bin/prepare.js +17 -4
- package/bin/version-warning.js +17 -4
- package/package.json +1 -1
- package/src/cli/index.js +17 -4
- package/src/commit/index.js +17 -4
- package/src/commitizen/index.js +17 -4
- package/src/index.js +17 -4
- package/src/release/index.js +17 -4
package/CHANGELOG.md
CHANGED
package/bin/git.js
CHANGED
|
@@ -231713,7 +231713,12 @@ var StormConfigSchema = z3.object({
|
|
|
231713
231713
|
extends: z3.string().trim().optional().describe(
|
|
231714
231714
|
"The path to a base JSON file to use as a configuration preset file"
|
|
231715
231715
|
),
|
|
231716
|
-
|
|
231716
|
+
isRoot: z3.boolean().optional().describe(
|
|
231717
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
231718
|
+
),
|
|
231719
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
231720
|
+
"The name of the service/package/scope using this configuration"
|
|
231721
|
+
),
|
|
231717
231722
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
231718
231723
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
231719
231724
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -231723,7 +231728,7 @@ var StormConfigSchema = z3.object({
|
|
|
231723
231728
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
231724
231729
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
231725
231730
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
231726
|
-
owner: z3.string().trim().default("@storm-software/
|
|
231731
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
231727
231732
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
231728
231733
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
231729
231734
|
),
|
|
@@ -231734,7 +231739,15 @@ var StormConfigSchema = z3.object({
|
|
|
231734
231739
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
231735
231740
|
),
|
|
231736
231741
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
231737
|
-
cacheDirectory: z3.string().trim().
|
|
231742
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
231743
|
+
"The directory used to store the environment's cached file data"
|
|
231744
|
+
),
|
|
231745
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
231746
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
231747
|
+
"The directory used to store the environment's configuration files"
|
|
231748
|
+
),
|
|
231749
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
231750
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
231738
231751
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
231739
231752
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
231740
231753
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -231752,7 +231765,7 @@ var StormConfigSchema = z3.object({
|
|
|
231752
231765
|
"debug",
|
|
231753
231766
|
"trace",
|
|
231754
231767
|
"all"
|
|
231755
|
-
]).default("
|
|
231768
|
+
]).default("info").describe(
|
|
231756
231769
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
231757
231770
|
),
|
|
231758
231771
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/post-checkout.js
CHANGED
|
@@ -66458,7 +66458,12 @@ var StormConfigSchema = z3.object({
|
|
|
66458
66458
|
extends: z3.string().trim().optional().describe(
|
|
66459
66459
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66460
66460
|
),
|
|
66461
|
-
|
|
66461
|
+
isRoot: z3.boolean().optional().describe(
|
|
66462
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66463
|
+
),
|
|
66464
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66465
|
+
"The name of the service/package/scope using this configuration"
|
|
66466
|
+
),
|
|
66462
66467
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66463
66468
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66464
66469
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66468,7 +66473,7 @@ var StormConfigSchema = z3.object({
|
|
|
66468
66473
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66469
66474
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66470
66475
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66471
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66476
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66472
66477
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66473
66478
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66474
66479
|
),
|
|
@@ -66479,7 +66484,15 @@ var StormConfigSchema = z3.object({
|
|
|
66479
66484
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66480
66485
|
),
|
|
66481
66486
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66482
|
-
cacheDirectory: z3.string().trim().
|
|
66487
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66488
|
+
"The directory used to store the environment's cached file data"
|
|
66489
|
+
),
|
|
66490
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66491
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66492
|
+
"The directory used to store the environment's configuration files"
|
|
66493
|
+
),
|
|
66494
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66495
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66483
66496
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66484
66497
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66485
66498
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66497,7 +66510,7 @@ var StormConfigSchema = z3.object({
|
|
|
66497
66510
|
"debug",
|
|
66498
66511
|
"trace",
|
|
66499
66512
|
"all"
|
|
66500
|
-
]).default("
|
|
66513
|
+
]).default("info").describe(
|
|
66501
66514
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66502
66515
|
),
|
|
66503
66516
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/post-commit.js
CHANGED
|
@@ -66458,7 +66458,12 @@ var StormConfigSchema = z3.object({
|
|
|
66458
66458
|
extends: z3.string().trim().optional().describe(
|
|
66459
66459
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66460
66460
|
),
|
|
66461
|
-
|
|
66461
|
+
isRoot: z3.boolean().optional().describe(
|
|
66462
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66463
|
+
),
|
|
66464
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66465
|
+
"The name of the service/package/scope using this configuration"
|
|
66466
|
+
),
|
|
66462
66467
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66463
66468
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66464
66469
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66468,7 +66473,7 @@ var StormConfigSchema = z3.object({
|
|
|
66468
66473
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66469
66474
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66470
66475
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66471
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66476
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66472
66477
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66473
66478
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66474
66479
|
),
|
|
@@ -66479,7 +66484,15 @@ var StormConfigSchema = z3.object({
|
|
|
66479
66484
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66480
66485
|
),
|
|
66481
66486
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66482
|
-
cacheDirectory: z3.string().trim().
|
|
66487
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66488
|
+
"The directory used to store the environment's cached file data"
|
|
66489
|
+
),
|
|
66490
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66491
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66492
|
+
"The directory used to store the environment's configuration files"
|
|
66493
|
+
),
|
|
66494
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66495
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66483
66496
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66484
66497
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66485
66498
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66497,7 +66510,7 @@ var StormConfigSchema = z3.object({
|
|
|
66497
66510
|
"debug",
|
|
66498
66511
|
"trace",
|
|
66499
66512
|
"all"
|
|
66500
|
-
]).default("
|
|
66513
|
+
]).default("info").describe(
|
|
66501
66514
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66502
66515
|
),
|
|
66503
66516
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/post-merge.js
CHANGED
|
@@ -66458,7 +66458,12 @@ var StormConfigSchema = z3.object({
|
|
|
66458
66458
|
extends: z3.string().trim().optional().describe(
|
|
66459
66459
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66460
66460
|
),
|
|
66461
|
-
|
|
66461
|
+
isRoot: z3.boolean().optional().describe(
|
|
66462
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66463
|
+
),
|
|
66464
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66465
|
+
"The name of the service/package/scope using this configuration"
|
|
66466
|
+
),
|
|
66462
66467
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66463
66468
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66464
66469
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66468,7 +66473,7 @@ var StormConfigSchema = z3.object({
|
|
|
66468
66473
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66469
66474
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66470
66475
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66471
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66476
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66472
66477
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66473
66478
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66474
66479
|
),
|
|
@@ -66479,7 +66484,15 @@ var StormConfigSchema = z3.object({
|
|
|
66479
66484
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66480
66485
|
),
|
|
66481
66486
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66482
|
-
cacheDirectory: z3.string().trim().
|
|
66487
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66488
|
+
"The directory used to store the environment's cached file data"
|
|
66489
|
+
),
|
|
66490
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66491
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66492
|
+
"The directory used to store the environment's configuration files"
|
|
66493
|
+
),
|
|
66494
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66495
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66483
66496
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66484
66497
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66485
66498
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66497,7 +66510,7 @@ var StormConfigSchema = z3.object({
|
|
|
66497
66510
|
"debug",
|
|
66498
66511
|
"trace",
|
|
66499
66512
|
"all"
|
|
66500
|
-
]).default("
|
|
66513
|
+
]).default("info").describe(
|
|
66501
66514
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66502
66515
|
),
|
|
66503
66516
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/pre-commit.js
CHANGED
|
@@ -66458,7 +66458,12 @@ var StormConfigSchema = z3.object({
|
|
|
66458
66458
|
extends: z3.string().trim().optional().describe(
|
|
66459
66459
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66460
66460
|
),
|
|
66461
|
-
|
|
66461
|
+
isRoot: z3.boolean().optional().describe(
|
|
66462
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66463
|
+
),
|
|
66464
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66465
|
+
"The name of the service/package/scope using this configuration"
|
|
66466
|
+
),
|
|
66462
66467
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66463
66468
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66464
66469
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66468,7 +66473,7 @@ var StormConfigSchema = z3.object({
|
|
|
66468
66473
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66469
66474
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66470
66475
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66471
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66476
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66472
66477
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66473
66478
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66474
66479
|
),
|
|
@@ -66479,7 +66484,15 @@ var StormConfigSchema = z3.object({
|
|
|
66479
66484
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66480
66485
|
),
|
|
66481
66486
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66482
|
-
cacheDirectory: z3.string().trim().
|
|
66487
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66488
|
+
"The directory used to store the environment's cached file data"
|
|
66489
|
+
),
|
|
66490
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66491
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66492
|
+
"The directory used to store the environment's configuration files"
|
|
66493
|
+
),
|
|
66494
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66495
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66483
66496
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66484
66497
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66485
66498
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66497,7 +66510,7 @@ var StormConfigSchema = z3.object({
|
|
|
66497
66510
|
"debug",
|
|
66498
66511
|
"trace",
|
|
66499
66512
|
"all"
|
|
66500
|
-
]).default("
|
|
66513
|
+
]).default("info").describe(
|
|
66501
66514
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66502
66515
|
),
|
|
66503
66516
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/pre-install.js
CHANGED
|
@@ -66458,7 +66458,12 @@ var StormConfigSchema = z3.object({
|
|
|
66458
66458
|
extends: z3.string().trim().optional().describe(
|
|
66459
66459
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66460
66460
|
),
|
|
66461
|
-
|
|
66461
|
+
isRoot: z3.boolean().optional().describe(
|
|
66462
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66463
|
+
),
|
|
66464
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66465
|
+
"The name of the service/package/scope using this configuration"
|
|
66466
|
+
),
|
|
66462
66467
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66463
66468
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66464
66469
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66468,7 +66473,7 @@ var StormConfigSchema = z3.object({
|
|
|
66468
66473
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66469
66474
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66470
66475
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66471
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66476
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66472
66477
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66473
66478
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66474
66479
|
),
|
|
@@ -66479,7 +66484,15 @@ var StormConfigSchema = z3.object({
|
|
|
66479
66484
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66480
66485
|
),
|
|
66481
66486
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66482
|
-
cacheDirectory: z3.string().trim().
|
|
66487
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66488
|
+
"The directory used to store the environment's cached file data"
|
|
66489
|
+
),
|
|
66490
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66491
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66492
|
+
"The directory used to store the environment's configuration files"
|
|
66493
|
+
),
|
|
66494
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66495
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66483
66496
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66484
66497
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66485
66498
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66497,7 +66510,7 @@ var StormConfigSchema = z3.object({
|
|
|
66497
66510
|
"debug",
|
|
66498
66511
|
"trace",
|
|
66499
66512
|
"all"
|
|
66500
|
-
]).default("
|
|
66513
|
+
]).default("info").describe(
|
|
66501
66514
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66502
66515
|
),
|
|
66503
66516
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/pre-push.js
CHANGED
|
@@ -66463,7 +66463,12 @@ var StormConfigSchema = z3.object({
|
|
|
66463
66463
|
extends: z3.string().trim().optional().describe(
|
|
66464
66464
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66465
66465
|
),
|
|
66466
|
-
|
|
66466
|
+
isRoot: z3.boolean().optional().describe(
|
|
66467
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66468
|
+
),
|
|
66469
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66470
|
+
"The name of the service/package/scope using this configuration"
|
|
66471
|
+
),
|
|
66467
66472
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66468
66473
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66469
66474
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66473,7 +66478,7 @@ var StormConfigSchema = z3.object({
|
|
|
66473
66478
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66474
66479
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66475
66480
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66476
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66481
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66477
66482
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66478
66483
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66479
66484
|
),
|
|
@@ -66484,7 +66489,15 @@ var StormConfigSchema = z3.object({
|
|
|
66484
66489
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66485
66490
|
),
|
|
66486
66491
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66487
|
-
cacheDirectory: z3.string().trim().
|
|
66492
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66493
|
+
"The directory used to store the environment's cached file data"
|
|
66494
|
+
),
|
|
66495
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66496
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66497
|
+
"The directory used to store the environment's configuration files"
|
|
66498
|
+
),
|
|
66499
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66500
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66488
66501
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66489
66502
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66490
66503
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66502,7 +66515,7 @@ var StormConfigSchema = z3.object({
|
|
|
66502
66515
|
"debug",
|
|
66503
66516
|
"trace",
|
|
66504
66517
|
"all"
|
|
66505
|
-
]).default("
|
|
66518
|
+
]).default("info").describe(
|
|
66506
66519
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66507
66520
|
),
|
|
66508
66521
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/prepare.js
CHANGED
|
@@ -66458,7 +66458,12 @@ var StormConfigSchema = z3.object({
|
|
|
66458
66458
|
extends: z3.string().trim().optional().describe(
|
|
66459
66459
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66460
66460
|
),
|
|
66461
|
-
|
|
66461
|
+
isRoot: z3.boolean().optional().describe(
|
|
66462
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66463
|
+
),
|
|
66464
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66465
|
+
"The name of the service/package/scope using this configuration"
|
|
66466
|
+
),
|
|
66462
66467
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66463
66468
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66464
66469
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66468,7 +66473,7 @@ var StormConfigSchema = z3.object({
|
|
|
66468
66473
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66469
66474
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66470
66475
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66471
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66476
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66472
66477
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66473
66478
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66474
66479
|
),
|
|
@@ -66479,7 +66484,15 @@ var StormConfigSchema = z3.object({
|
|
|
66479
66484
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66480
66485
|
),
|
|
66481
66486
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66482
|
-
cacheDirectory: z3.string().trim().
|
|
66487
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66488
|
+
"The directory used to store the environment's cached file data"
|
|
66489
|
+
),
|
|
66490
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66491
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66492
|
+
"The directory used to store the environment's configuration files"
|
|
66493
|
+
),
|
|
66494
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66495
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66483
66496
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66484
66497
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66485
66498
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66497,7 +66510,7 @@ var StormConfigSchema = z3.object({
|
|
|
66497
66510
|
"debug",
|
|
66498
66511
|
"trace",
|
|
66499
66512
|
"all"
|
|
66500
|
-
]).default("
|
|
66513
|
+
]).default("info").describe(
|
|
66501
66514
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66502
66515
|
),
|
|
66503
66516
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/bin/version-warning.js
CHANGED
|
@@ -66458,7 +66458,12 @@ var StormConfigSchema = z3.object({
|
|
|
66458
66458
|
extends: z3.string().trim().optional().describe(
|
|
66459
66459
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66460
66460
|
),
|
|
66461
|
-
|
|
66461
|
+
isRoot: z3.boolean().optional().describe(
|
|
66462
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66463
|
+
),
|
|
66464
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66465
|
+
"The name of the service/package/scope using this configuration"
|
|
66466
|
+
),
|
|
66462
66467
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66463
66468
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66464
66469
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66468,7 +66473,7 @@ var StormConfigSchema = z3.object({
|
|
|
66468
66473
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66469
66474
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66470
66475
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66471
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66476
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66472
66477
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66473
66478
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66474
66479
|
),
|
|
@@ -66479,7 +66484,15 @@ var StormConfigSchema = z3.object({
|
|
|
66479
66484
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66480
66485
|
),
|
|
66481
66486
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66482
|
-
cacheDirectory: z3.string().trim().
|
|
66487
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66488
|
+
"The directory used to store the environment's cached file data"
|
|
66489
|
+
),
|
|
66490
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66491
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66492
|
+
"The directory used to store the environment's configuration files"
|
|
66493
|
+
),
|
|
66494
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66495
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66483
66496
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66484
66497
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66485
66498
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66497,7 +66510,7 @@ var StormConfigSchema = z3.object({
|
|
|
66497
66510
|
"debug",
|
|
66498
66511
|
"trace",
|
|
66499
66512
|
"all"
|
|
66500
|
-
]).default("
|
|
66513
|
+
]).default("info").describe(
|
|
66501
66514
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
66502
66515
|
),
|
|
66503
66516
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/package.json
CHANGED
package/src/cli/index.js
CHANGED
|
@@ -227551,7 +227551,12 @@ var StormConfigSchema = z3.object({
|
|
|
227551
227551
|
extends: z3.string().trim().optional().describe(
|
|
227552
227552
|
"The path to a base JSON file to use as a configuration preset file"
|
|
227553
227553
|
),
|
|
227554
|
-
|
|
227554
|
+
isRoot: z3.boolean().optional().describe(
|
|
227555
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
227556
|
+
),
|
|
227557
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
227558
|
+
"The name of the service/package/scope using this configuration"
|
|
227559
|
+
),
|
|
227555
227560
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
227556
227561
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
227557
227562
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -227561,7 +227566,7 @@ var StormConfigSchema = z3.object({
|
|
|
227561
227566
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
227562
227567
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
227563
227568
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
227564
|
-
owner: z3.string().trim().default("@storm-software/
|
|
227569
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
227565
227570
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
227566
227571
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
227567
227572
|
),
|
|
@@ -227572,7 +227577,15 @@ var StormConfigSchema = z3.object({
|
|
|
227572
227577
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
227573
227578
|
),
|
|
227574
227579
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
227575
|
-
cacheDirectory: z3.string().trim().
|
|
227580
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
227581
|
+
"The directory used to store the environment's cached file data"
|
|
227582
|
+
),
|
|
227583
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
227584
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
227585
|
+
"The directory used to store the environment's configuration files"
|
|
227586
|
+
),
|
|
227587
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
227588
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
227576
227589
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
227577
227590
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
227578
227591
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -227590,7 +227603,7 @@ var StormConfigSchema = z3.object({
|
|
|
227590
227603
|
"debug",
|
|
227591
227604
|
"trace",
|
|
227592
227605
|
"all"
|
|
227593
|
-
]).default("
|
|
227606
|
+
]).default("info").describe(
|
|
227594
227607
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
227595
227608
|
),
|
|
227596
227609
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/src/commit/index.js
CHANGED
|
@@ -38045,7 +38045,12 @@ var StormConfigSchema = z.object({
|
|
|
38045
38045
|
extends: z.string().trim().optional().describe(
|
|
38046
38046
|
"The path to a base JSON file to use as a configuration preset file"
|
|
38047
38047
|
),
|
|
38048
|
-
|
|
38048
|
+
isRoot: z.boolean().optional().describe(
|
|
38049
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
38050
|
+
),
|
|
38051
|
+
name: z.string().trim().toLowerCase().optional().describe(
|
|
38052
|
+
"The name of the service/package/scope using this configuration"
|
|
38053
|
+
),
|
|
38049
38054
|
namespace: z.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
38050
38055
|
organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
38051
38056
|
repository: z.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -38055,7 +38060,7 @@ var StormConfigSchema = z.object({
|
|
|
38055
38060
|
licensing: z.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
38056
38061
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
38057
38062
|
preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
38058
|
-
owner: z.string().trim().default("@storm-software/
|
|
38063
|
+
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
38059
38064
|
worker: z.string().trim().default("Stormie-Bot").describe(
|
|
38060
38065
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
38061
38066
|
),
|
|
@@ -38066,7 +38071,15 @@ var StormConfigSchema = z.object({
|
|
|
38066
38071
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
38067
38072
|
),
|
|
38068
38073
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
38069
|
-
cacheDirectory: z.string().trim().
|
|
38074
|
+
cacheDirectory: z.string().trim().optional().describe(
|
|
38075
|
+
"The directory used to store the environment's cached file data"
|
|
38076
|
+
),
|
|
38077
|
+
dataDirectory: z.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
38078
|
+
configDirectory: z.string().trim().optional().describe(
|
|
38079
|
+
"The directory used to store the environment's configuration files"
|
|
38080
|
+
),
|
|
38081
|
+
tempDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
38082
|
+
logDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
38070
38083
|
buildDirectory: z.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
38071
38084
|
outputDirectory: z.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
38072
38085
|
runtimeVersion: z.string().trim().regex(
|
|
@@ -38084,7 +38097,7 @@ var StormConfigSchema = z.object({
|
|
|
38084
38097
|
"debug",
|
|
38085
38098
|
"trace",
|
|
38086
38099
|
"all"
|
|
38087
|
-
]).default("
|
|
38100
|
+
]).default("info").describe(
|
|
38088
38101
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
38089
38102
|
),
|
|
38090
38103
|
cloudflareAccountId: z.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/src/commitizen/index.js
CHANGED
|
@@ -37992,7 +37992,12 @@ var StormConfigSchema = z.object({
|
|
|
37992
37992
|
extends: z.string().trim().optional().describe(
|
|
37993
37993
|
"The path to a base JSON file to use as a configuration preset file"
|
|
37994
37994
|
),
|
|
37995
|
-
|
|
37995
|
+
isRoot: z.boolean().optional().describe(
|
|
37996
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
37997
|
+
),
|
|
37998
|
+
name: z.string().trim().toLowerCase().optional().describe(
|
|
37999
|
+
"The name of the service/package/scope using this configuration"
|
|
38000
|
+
),
|
|
37996
38001
|
namespace: z.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
37997
38002
|
organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
37998
38003
|
repository: z.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -38002,7 +38007,7 @@ var StormConfigSchema = z.object({
|
|
|
38002
38007
|
licensing: z.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
38003
38008
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
38004
38009
|
preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
38005
|
-
owner: z.string().trim().default("@storm-software/
|
|
38010
|
+
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
38006
38011
|
worker: z.string().trim().default("Stormie-Bot").describe(
|
|
38007
38012
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
38008
38013
|
),
|
|
@@ -38013,7 +38018,15 @@ var StormConfigSchema = z.object({
|
|
|
38013
38018
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
38014
38019
|
),
|
|
38015
38020
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
38016
|
-
cacheDirectory: z.string().trim().
|
|
38021
|
+
cacheDirectory: z.string().trim().optional().describe(
|
|
38022
|
+
"The directory used to store the environment's cached file data"
|
|
38023
|
+
),
|
|
38024
|
+
dataDirectory: z.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
38025
|
+
configDirectory: z.string().trim().optional().describe(
|
|
38026
|
+
"The directory used to store the environment's configuration files"
|
|
38027
|
+
),
|
|
38028
|
+
tempDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
38029
|
+
logDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
38017
38030
|
buildDirectory: z.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
38018
38031
|
outputDirectory: z.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
38019
38032
|
runtimeVersion: z.string().trim().regex(
|
|
@@ -38031,7 +38044,7 @@ var StormConfigSchema = z.object({
|
|
|
38031
38044
|
"debug",
|
|
38032
38045
|
"trace",
|
|
38033
38046
|
"all"
|
|
38034
|
-
]).default("
|
|
38047
|
+
]).default("info").describe(
|
|
38035
38048
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
38036
38049
|
),
|
|
38037
38050
|
cloudflareAccountId: z.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/src/index.js
CHANGED
|
@@ -227551,7 +227551,12 @@ var StormConfigSchema = z3.object({
|
|
|
227551
227551
|
extends: z3.string().trim().optional().describe(
|
|
227552
227552
|
"The path to a base JSON file to use as a configuration preset file"
|
|
227553
227553
|
),
|
|
227554
|
-
|
|
227554
|
+
isRoot: z3.boolean().optional().describe(
|
|
227555
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
227556
|
+
),
|
|
227557
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
227558
|
+
"The name of the service/package/scope using this configuration"
|
|
227559
|
+
),
|
|
227555
227560
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
227556
227561
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
227557
227562
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -227561,7 +227566,7 @@ var StormConfigSchema = z3.object({
|
|
|
227561
227566
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
227562
227567
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
227563
227568
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
227564
|
-
owner: z3.string().trim().default("@storm-software/
|
|
227569
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
227565
227570
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
227566
227571
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
227567
227572
|
),
|
|
@@ -227572,7 +227577,15 @@ var StormConfigSchema = z3.object({
|
|
|
227572
227577
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
227573
227578
|
),
|
|
227574
227579
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
227575
|
-
cacheDirectory: z3.string().trim().
|
|
227580
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
227581
|
+
"The directory used to store the environment's cached file data"
|
|
227582
|
+
),
|
|
227583
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
227584
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
227585
|
+
"The directory used to store the environment's configuration files"
|
|
227586
|
+
),
|
|
227587
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
227588
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
227576
227589
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
227577
227590
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
227578
227591
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -227590,7 +227603,7 @@ var StormConfigSchema = z3.object({
|
|
|
227590
227603
|
"debug",
|
|
227591
227604
|
"trace",
|
|
227592
227605
|
"all"
|
|
227593
|
-
]).default("
|
|
227606
|
+
]).default("info").describe(
|
|
227594
227607
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
227595
227608
|
),
|
|
227596
227609
|
cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|
package/src/release/index.js
CHANGED
|
@@ -5806,7 +5806,12 @@ var StormConfigSchema = z.object({
|
|
|
5806
5806
|
extends: z.string().trim().optional().describe(
|
|
5807
5807
|
"The path to a base JSON file to use as a configuration preset file"
|
|
5808
5808
|
),
|
|
5809
|
-
|
|
5809
|
+
isRoot: z.boolean().optional().describe(
|
|
5810
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
5811
|
+
),
|
|
5812
|
+
name: z.string().trim().toLowerCase().optional().describe(
|
|
5813
|
+
"The name of the service/package/scope using this configuration"
|
|
5814
|
+
),
|
|
5810
5815
|
namespace: z.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
5811
5816
|
organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
5812
5817
|
repository: z.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -5816,7 +5821,7 @@ var StormConfigSchema = z.object({
|
|
|
5816
5821
|
licensing: z.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
5817
5822
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
5818
5823
|
preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
5819
|
-
owner: z.string().trim().default("@storm-software/
|
|
5824
|
+
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
5820
5825
|
worker: z.string().trim().default("Stormie-Bot").describe(
|
|
5821
5826
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
5822
5827
|
),
|
|
@@ -5827,7 +5832,15 @@ var StormConfigSchema = z.object({
|
|
|
5827
5832
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
5828
5833
|
),
|
|
5829
5834
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
5830
|
-
cacheDirectory: z.string().trim().
|
|
5835
|
+
cacheDirectory: z.string().trim().optional().describe(
|
|
5836
|
+
"The directory used to store the environment's cached file data"
|
|
5837
|
+
),
|
|
5838
|
+
dataDirectory: z.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
5839
|
+
configDirectory: z.string().trim().optional().describe(
|
|
5840
|
+
"The directory used to store the environment's configuration files"
|
|
5841
|
+
),
|
|
5842
|
+
tempDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
5843
|
+
logDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
5831
5844
|
buildDirectory: z.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
5832
5845
|
outputDirectory: z.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
5833
5846
|
runtimeVersion: z.string().trim().regex(
|
|
@@ -5845,7 +5858,7 @@ var StormConfigSchema = z.object({
|
|
|
5845
5858
|
"debug",
|
|
5846
5859
|
"trace",
|
|
5847
5860
|
"all"
|
|
5848
|
-
]).default("
|
|
5861
|
+
]).default("info").describe(
|
|
5849
5862
|
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
5850
5863
|
),
|
|
5851
5864
|
cloudflareAccountId: z.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
|