@elgato/cli 1.1.1 → 1.3.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/dist/index.d.ts
CHANGED
|
@@ -288,11 +288,11 @@ declare class FileValidationResult extends OrderedArray<ValidationEntry> {
|
|
|
288
288
|
*/
|
|
289
289
|
declare class ValidationResult extends Array<FileValidationResult> implements ReadonlyArray<FileValidationResult> {
|
|
290
290
|
/**
|
|
291
|
-
* Private backing field for {@link
|
|
291
|
+
* Private backing field for {@link ValidationResult.errorCount}.
|
|
292
292
|
*/
|
|
293
293
|
private errorCount;
|
|
294
294
|
/**
|
|
295
|
-
* Private backing field for {@link
|
|
295
|
+
* Private backing field for {@link ValidationResult.warningCount}.
|
|
296
296
|
*/
|
|
297
297
|
private warningCount;
|
|
298
298
|
/**
|
package/dist/index.js
CHANGED
|
@@ -179,11 +179,11 @@ var FileValidationResult = class extends OrderedArray {
|
|
|
179
179
|
// src/validation/result.ts
|
|
180
180
|
var ValidationResult = class extends Array {
|
|
181
181
|
/**
|
|
182
|
-
* Private backing field for {@link
|
|
182
|
+
* Private backing field for {@link ValidationResult.errorCount}.
|
|
183
183
|
*/
|
|
184
184
|
errorCount = 0;
|
|
185
185
|
/**
|
|
186
|
-
* Private backing field for {@link
|
|
186
|
+
* Private backing field for {@link ValidationResult.warningCount}.
|
|
187
187
|
*/
|
|
188
188
|
warningCount = 0;
|
|
189
189
|
/**
|
|
@@ -476,11 +476,11 @@ function aggregate(items, conjunction, transform) {
|
|
|
476
476
|
// src/json/schema.ts
|
|
477
477
|
var JsonSchema = class {
|
|
478
478
|
/**
|
|
479
|
-
* Private backing field for {@link filePathsKeywords}.
|
|
479
|
+
* Private backing field for {@link JsonSchema.filePathsKeywords}.
|
|
480
480
|
*/
|
|
481
481
|
_filePathsKeywords = /* @__PURE__ */ new Map();
|
|
482
482
|
/**
|
|
483
|
-
* Private backing field for {@link imageDimensionKeywords}.
|
|
483
|
+
* Private backing field for {@link JsonSchema.imageDimensionKeywords}.
|
|
484
484
|
*/
|
|
485
485
|
_imageDimensionKeywords = /* @__PURE__ */ new Map();
|
|
486
486
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elgato/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Stream Deck CLI tool for building with Stream Deck.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"streamdeck": "bin/streamdeck.mjs",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"watch": "npm run watch:bin & npm run watch:exports",
|
|
25
25
|
"watch:bin": "rollup --config rollup.config.ts --configPlugin typescript --watch",
|
|
26
26
|
"watch:exports": "tsup --watch",
|
|
27
|
-
"lint": "eslint
|
|
27
|
+
"lint": "eslint --max-warnings 0",
|
|
28
28
|
"lint:fix": "prettier \"./src/**/*.ts\" --write",
|
|
29
29
|
"preversion": "npm run lint",
|
|
30
30
|
"version": "npm run build"
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"tar": "^7.4.3"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
+
"@elgato/eslint-config": "^0.1.0",
|
|
73
74
|
"@elgato/prettier-config": "^0.2.4",
|
|
74
75
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
75
76
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -82,12 +83,6 @@
|
|
|
82
83
|
"@types/lodash": "^4.17.14",
|
|
83
84
|
"@types/node": "^22.10.7",
|
|
84
85
|
"@types/semver": "^7.5.8",
|
|
85
|
-
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
86
|
-
"@typescript-eslint/parser": "^8.20.0",
|
|
87
|
-
"eslint": "^8.57.1",
|
|
88
|
-
"eslint-config-prettier": "^10.0.1",
|
|
89
|
-
"eslint-plugin-jsdoc": "^50.6.1",
|
|
90
|
-
"eslint-plugin-prettier": "^5.2.2",
|
|
91
86
|
"rollup": "^4.30.1",
|
|
92
87
|
"tslib": "^2.8.1",
|
|
93
88
|
"tsup": "^8.3.5",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<head lang="en">
|
|
5
5
|
<title>Increment Counter Settings</title>
|
|
6
6
|
<meta charset="utf-8" />
|
|
7
|
-
<script src="https://sdpi-components.dev/releases/
|
|
7
|
+
<script src="https://sdpi-components.dev/releases/v4/sdpi-components.js"></script>
|
|
8
8
|
</head>
|
|
9
9
|
|
|
10
10
|
<body>
|