@storm-software/workspace-tools 1.19.1 → 1.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/index.js +3 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/generators/config-schema/generator.js +3 -3
package/package.json
CHANGED
|
@@ -28319,13 +28319,13 @@ var StormConfigSchema = objectType({
|
|
|
28319
28319
|
worker: stringType().trim().default("stormie-bot").describe(
|
|
28320
28320
|
"The worker of the package (this is the bot that will be used to perform various tasks)"
|
|
28321
28321
|
),
|
|
28322
|
-
env: enumType(["development", "staging", "production"]).default("
|
|
28323
|
-
ci: booleanType().default(
|
|
28322
|
+
env: enumType(["development", "staging", "production"]).default("production").describe("The current runtime environment of the package"),
|
|
28323
|
+
ci: booleanType().default(true).describe(
|
|
28324
28324
|
"An indicator specifying if the current environment is a CI environment"
|
|
28325
28325
|
),
|
|
28326
28326
|
workspaceRoot: stringType().trim().describe("The root directory of the workspace"),
|
|
28327
28327
|
packageDirectory: stringType().trim().optional().describe("The root directory of the package"),
|
|
28328
|
-
buildDirectory: stringType().trim().
|
|
28328
|
+
buildDirectory: stringType().trim().default("dist").describe("The build directory for the workspace"),
|
|
28329
28329
|
runtimeDirectory: stringType().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
28330
28330
|
runtimeVersion: stringType().trim().regex(
|
|
28331
28331
|
/^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/
|