@storm-software/workspace-tools 1.201.3 → 1.202.1
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 +14 -0
- package/index.js +19 -95
- package/meta.json +70 -140
- package/package.json +1 -1
- package/src/base/base-executor.js +17 -4
- package/src/base/base-generator.js +17 -4
- package/src/base/index.js +18 -94
- package/src/base/typescript-library-generator.d.ts +1 -3
- package/src/base/typescript-library-generator.js +1 -90
- 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 +23 -97
- package/src/generators/config-schema/generator.js +17 -4
- package/src/generators/neutral-library/generator.js +19 -93
- package/src/generators/node-library/generator.js +19 -93
- package/src/generators/preset/generator.js +17 -4
- package/src/generators/release-version/generator.js +17 -4
- package/src/utils/index.js +17 -4
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"),
|