@code-pushup/eslint-plugin 0.8.25 → 0.9.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/bin.js +2 -1
- package/index.js +3 -2
- package/package.json +1 -1
package/bin.js
CHANGED
|
@@ -455,7 +455,8 @@ var uploadConfigSchema = z10.object({
|
|
|
455
455
|
description: "API key with write access to portal (use `process.env` for security)"
|
|
456
456
|
}),
|
|
457
457
|
organization: slugSchema("Organization slug from Code PushUp portal"),
|
|
458
|
-
project: slugSchema("Project slug from Code PushUp portal")
|
|
458
|
+
project: slugSchema("Project slug from Code PushUp portal"),
|
|
459
|
+
timeout: z10.number({ description: "Request timeout in minutes (default is 5)" }).positive().int().optional()
|
|
459
460
|
});
|
|
460
461
|
|
|
461
462
|
// packages/models/src/lib/core-config.ts
|
package/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from "node:url";
|
|
|
5
5
|
|
|
6
6
|
// packages/plugin-eslint/package.json
|
|
7
7
|
var name = "@code-pushup/eslint-plugin";
|
|
8
|
-
var version = "0.
|
|
8
|
+
var version = "0.9.0";
|
|
9
9
|
|
|
10
10
|
// packages/plugin-eslint/src/lib/config.ts
|
|
11
11
|
import { z } from "zod";
|
|
@@ -477,7 +477,8 @@ var uploadConfigSchema = z11.object({
|
|
|
477
477
|
description: "API key with write access to portal (use `process.env` for security)"
|
|
478
478
|
}),
|
|
479
479
|
organization: slugSchema("Organization slug from Code PushUp portal"),
|
|
480
|
-
project: slugSchema("Project slug from Code PushUp portal")
|
|
480
|
+
project: slugSchema("Project slug from Code PushUp portal"),
|
|
481
|
+
timeout: z11.number({ description: "Request timeout in minutes (default is 5)" }).positive().int().optional()
|
|
481
482
|
});
|
|
482
483
|
|
|
483
484
|
// packages/models/src/lib/core-config.ts
|