@storm-software/eslint 0.122.7 → 0.122.8
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/dist/preset.cjs +2 -2
- package/dist/preset.js +2 -2
- package/package.json +1 -1
package/dist/preset.cjs
CHANGED
|
@@ -170,11 +170,11 @@ var StormConfigSchema = _zod2.default.object({
|
|
|
170
170
|
preid: _zod2.default.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
171
171
|
owner: _zod2.default.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
172
172
|
bot: WorkspaceBotConfigSchema,
|
|
173
|
-
|
|
173
|
+
mode: _zod2.default.enum([
|
|
174
174
|
"development",
|
|
175
175
|
"staging",
|
|
176
176
|
"production"
|
|
177
|
-
]).default("production").describe("The current runtime environment
|
|
177
|
+
]).default("production").describe("The current runtime environment mode for the package"),
|
|
178
178
|
workspaceRoot: _zod2.default.string().trim().default("").describe("The root directory of the workspace"),
|
|
179
179
|
externalPackagePatterns: _zod2.default.array(_zod2.default.string()).default([]).describe("The build will use these package patterns to determine if they should be external to the bundle"),
|
|
180
180
|
skipCache: _zod2.default.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
package/dist/preset.js
CHANGED
|
@@ -170,11 +170,11 @@ var StormConfigSchema = z.object({
|
|
|
170
170
|
preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
171
171
|
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
172
172
|
bot: WorkspaceBotConfigSchema,
|
|
173
|
-
|
|
173
|
+
mode: z.enum([
|
|
174
174
|
"development",
|
|
175
175
|
"staging",
|
|
176
176
|
"production"
|
|
177
|
-
]).default("production").describe("The current runtime environment
|
|
177
|
+
]).default("production").describe("The current runtime environment mode for the package"),
|
|
178
178
|
workspaceRoot: z.string().trim().default("").describe("The root directory of the workspace"),
|
|
179
179
|
externalPackagePatterns: z.array(z.string()).default([]).describe("The build will use these package patterns to determine if they should be external to the bundle"),
|
|
180
180
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
package/package.json
CHANGED