@storm-software/config-tools 1.57.0 → 1.59.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 +1235 -1065
- package/README.md +91 -32
- package/index.cjs +2 -1
- package/index.js +2 -1
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
- package/utilities/logger.cjs +1 -1
- package/utilities/logger.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.59.0",
|
|
4
4
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
package/utilities/logger.cjs
CHANGED
|
@@ -5668,7 +5668,7 @@ var StormConfigSchema = z.object({
|
|
|
5668
5668
|
ci: z.boolean().default(true).describe(
|
|
5669
5669
|
"An indicator specifying if the current environment is a CI environment"
|
|
5670
5670
|
),
|
|
5671
|
-
workspaceRoot: z.string().trim().
|
|
5671
|
+
workspaceRoot: z.string().trim().default("").describe("The root directory of the workspace"),
|
|
5672
5672
|
packageDirectory: z.string().trim().optional().describe("The root directory of the package"),
|
|
5673
5673
|
externalPackagePatterns: z.array(z.string()).default([]).describe(
|
|
5674
5674
|
"The build will use these package patterns to determine if they should be external to the bundle"
|
package/utilities/logger.js
CHANGED
|
@@ -5652,7 +5652,7 @@ var StormConfigSchema = z.object({
|
|
|
5652
5652
|
ci: z.boolean().default(true).describe(
|
|
5653
5653
|
"An indicator specifying if the current environment is a CI environment"
|
|
5654
5654
|
),
|
|
5655
|
-
workspaceRoot: z.string().trim().
|
|
5655
|
+
workspaceRoot: z.string().trim().default("").describe("The root directory of the workspace"),
|
|
5656
5656
|
packageDirectory: z.string().trim().optional().describe("The root directory of the package"),
|
|
5657
5657
|
externalPackagePatterns: z.array(z.string()).default([]).describe(
|
|
5658
5658
|
"The build will use these package patterns to determine if they should be external to the bundle"
|