@storm-software/workspace-tools 1.201.2 → 1.202.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 +27 -0
- package/index.js +17 -4
- package/meta.json +53 -53
- package/package.json +2 -2
- package/src/base/base-executor.js +17 -4
- package/src/base/base-generator.js +17 -4
- package/src/base/index.js +17 -4
- package/src/executors/cargo-build/executor.js +17 -4
- package/src/executors/cargo-check/executor.js +17 -4
- package/src/executors/cargo-clippy/executor.js +17 -4
- package/src/executors/cargo-doc/executor.js +17 -4
- package/src/executors/cargo-format/executor.js +17 -4
- package/src/executors/clean-package/executor.js +17 -4
- package/src/executors/rolldown/executor.js +17 -4
- package/src/executors/rollup/executor.js +17 -4
- package/src/executors/size-limit/executor.js +17 -4
- package/src/executors/tsup/executor.js +17 -4
- package/src/executors/tsup-browser/executor.js +17 -4
- package/src/executors/tsup-neutral/executor.js +17 -4
- package/src/executors/tsup-node/executor.js +17 -4
- package/src/executors/typia/executor.js +17 -4
- package/src/executors/unbuild/executor.js +17 -4
- package/src/generators/browser-library/generator.js +17 -4
- package/src/generators/config-schema/generator.js +17 -4
- package/src/generators/neutral-library/generator.js +17 -4
- package/src/generators/node-library/generator.js +17 -4
- package/src/generators/preset/generator.js +17 -4
- package/src/generators/release-version/generator.js +17 -4
- package/src/utils/index.js +17 -4
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|
|
@@ -92156,7 +92156,12 @@ var init_schema = __esm({
|
|
|
92156
92156
|
extends: z3.string().trim().optional().describe(
|
|
92157
92157
|
"The path to a base JSON file to use as a configuration preset file"
|
|
92158
92158
|
),
|
|
92159
|
-
|
|
92159
|
+
isRoot: z3.boolean().optional().describe(
|
|
92160
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
92161
|
+
),
|
|
92162
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
92163
|
+
"The name of the service/package/scope using this configuration"
|
|
92164
|
+
),
|
|
92160
92165
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
92161
92166
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
92162
92167
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -92166,7 +92171,7 @@ var init_schema = __esm({
|
|
|
92166
92171
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
92167
92172
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
92168
92173
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
92169
|
-
owner: z3.string().trim().default("@storm-software/
|
|
92174
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
92170
92175
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
92171
92176
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
92172
92177
|
),
|
|
@@ -92177,7 +92182,15 @@ var init_schema = __esm({
|
|
|
92177
92182
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
92178
92183
|
),
|
|
92179
92184
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
92180
|
-
cacheDirectory: z3.string().trim().
|
|
92185
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
92186
|
+
"The directory used to store the environment's cached file data"
|
|
92187
|
+
),
|
|
92188
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
92189
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
92190
|
+
"The directory used to store the environment's configuration files"
|
|
92191
|
+
),
|
|
92192
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
92193
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
92181
92194
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
92182
92195
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
92183
92196
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -92195,7 +92208,7 @@ var init_schema = __esm({
|
|
|
92195
92208
|
"debug",
|
|
92196
92209
|
"trace",
|
|
92197
92210
|
"all"
|
|
92198
|
-
]).default("
|
|
92211
|
+
]).default("info").describe(
|
|
92199
92212
|
"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`)."
|
|
92200
92213
|
),
|
|
92201
92214
|
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"),
|
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|
|
@@ -4056,7 +4056,12 @@ var init_schema = __esm({
|
|
|
4056
4056
|
extends: z.string().trim().optional().describe(
|
|
4057
4057
|
"The path to a base JSON file to use as a configuration preset file"
|
|
4058
4058
|
),
|
|
4059
|
-
|
|
4059
|
+
isRoot: z.boolean().optional().describe(
|
|
4060
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
4061
|
+
),
|
|
4062
|
+
name: z.string().trim().toLowerCase().optional().describe(
|
|
4063
|
+
"The name of the service/package/scope using this configuration"
|
|
4064
|
+
),
|
|
4060
4065
|
namespace: z.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
4061
4066
|
organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
4062
4067
|
repository: z.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -4066,7 +4071,7 @@ var init_schema = __esm({
|
|
|
4066
4071
|
licensing: z.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
4067
4072
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
4068
4073
|
preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
4069
|
-
owner: z.string().trim().default("@storm-software/
|
|
4074
|
+
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
4070
4075
|
worker: z.string().trim().default("Stormie-Bot").describe(
|
|
4071
4076
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
4072
4077
|
),
|
|
@@ -4077,7 +4082,15 @@ var init_schema = __esm({
|
|
|
4077
4082
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
4078
4083
|
),
|
|
4079
4084
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
4080
|
-
cacheDirectory: z.string().trim().
|
|
4085
|
+
cacheDirectory: z.string().trim().optional().describe(
|
|
4086
|
+
"The directory used to store the environment's cached file data"
|
|
4087
|
+
),
|
|
4088
|
+
dataDirectory: z.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
4089
|
+
configDirectory: z.string().trim().optional().describe(
|
|
4090
|
+
"The directory used to store the environment's configuration files"
|
|
4091
|
+
),
|
|
4092
|
+
tempDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
4093
|
+
logDirectory: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
4081
4094
|
buildDirectory: z.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
4082
4095
|
outputDirectory: z.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
4083
4096
|
runtimeVersion: z.string().trim().regex(
|
|
@@ -4095,7 +4108,7 @@ var init_schema = __esm({
|
|
|
4095
4108
|
"debug",
|
|
4096
4109
|
"trace",
|
|
4097
4110
|
"all"
|
|
4098
|
-
]).default("
|
|
4111
|
+
]).default("info").describe(
|
|
4099
4112
|
"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`)."
|
|
4100
4113
|
),
|
|
4101
4114
|
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"),
|
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|
|
@@ -68210,7 +68210,12 @@ var init_schema = __esm({
|
|
|
68210
68210
|
extends: z3.string().trim().optional().describe(
|
|
68211
68211
|
"The path to a base JSON file to use as a configuration preset file"
|
|
68212
68212
|
),
|
|
68213
|
-
|
|
68213
|
+
isRoot: z3.boolean().optional().describe(
|
|
68214
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
68215
|
+
),
|
|
68216
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
68217
|
+
"The name of the service/package/scope using this configuration"
|
|
68218
|
+
),
|
|
68214
68219
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
68215
68220
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
68216
68221
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -68220,7 +68225,7 @@ var init_schema = __esm({
|
|
|
68220
68225
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
68221
68226
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
68222
68227
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
68223
|
-
owner: z3.string().trim().default("@storm-software/
|
|
68228
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
68224
68229
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
68225
68230
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
68226
68231
|
),
|
|
@@ -68231,7 +68236,15 @@ var init_schema = __esm({
|
|
|
68231
68236
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
68232
68237
|
),
|
|
68233
68238
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
68234
|
-
cacheDirectory: z3.string().trim().
|
|
68239
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
68240
|
+
"The directory used to store the environment's cached file data"
|
|
68241
|
+
),
|
|
68242
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
68243
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
68244
|
+
"The directory used to store the environment's configuration files"
|
|
68245
|
+
),
|
|
68246
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
68247
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
68235
68248
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
68236
68249
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
68237
68250
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -68249,7 +68262,7 @@ var init_schema = __esm({
|
|
|
68249
68262
|
"debug",
|
|
68250
68263
|
"trace",
|
|
68251
68264
|
"all"
|
|
68252
|
-
]).default("
|
|
68265
|
+
]).default("info").describe(
|
|
68253
68266
|
"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`)."
|
|
68254
68267
|
),
|
|
68255
68268
|
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/utils/index.js
CHANGED
|
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
|
|
|
66386
66386
|
extends: z3.string().trim().optional().describe(
|
|
66387
66387
|
"The path to a base JSON file to use as a configuration preset file"
|
|
66388
66388
|
),
|
|
66389
|
-
|
|
66389
|
+
isRoot: z3.boolean().optional().describe(
|
|
66390
|
+
"A flag indicating if the current configuration is the set in the root of the workspace"
|
|
66391
|
+
),
|
|
66392
|
+
name: z3.string().trim().toLowerCase().optional().describe(
|
|
66393
|
+
"The name of the service/package/scope using this configuration"
|
|
66394
|
+
),
|
|
66390
66395
|
namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
66391
66396
|
organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
66392
66397
|
repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
|
|
|
66396
66401
|
licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
66397
66402
|
branch: z3.string().trim().default("main").describe("The branch of the workspace"),
|
|
66398
66403
|
preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
66399
|
-
owner: z3.string().trim().default("@storm-software/
|
|
66404
|
+
owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
66400
66405
|
worker: z3.string().trim().default("Stormie-Bot").describe(
|
|
66401
66406
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
66402
66407
|
),
|
|
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
|
|
|
66407
66412
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
66408
66413
|
),
|
|
66409
66414
|
skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
66410
|
-
cacheDirectory: z3.string().trim().
|
|
66415
|
+
cacheDirectory: z3.string().trim().optional().describe(
|
|
66416
|
+
"The directory used to store the environment's cached file data"
|
|
66417
|
+
),
|
|
66418
|
+
dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
66419
|
+
configDirectory: z3.string().trim().optional().describe(
|
|
66420
|
+
"The directory used to store the environment's configuration files"
|
|
66421
|
+
),
|
|
66422
|
+
tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66423
|
+
logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
66411
66424
|
buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
|
|
66412
66425
|
outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
66413
66426
|
runtimeVersion: z3.string().trim().regex(
|
|
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
|
|
|
66425
66438
|
"debug",
|
|
66426
66439
|
"trace",
|
|
66427
66440
|
"all"
|
|
66428
|
-
]).default("
|
|
66441
|
+
]).default("info").describe(
|
|
66429
66442
|
"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`)."
|
|
66430
66443
|
),
|
|
66431
66444
|
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"),
|