@typescript-eslint/rule-tester 8.32.2-alpha.1 → 8.32.2-alpha.10
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.
|
@@ -6,7 +6,7 @@ export interface SemverVersionConstraint {
|
|
|
6
6
|
readonly options?: boolean | RangeOptions;
|
|
7
7
|
readonly range: string;
|
|
8
8
|
}
|
|
9
|
-
export type AtLeastVersionConstraint = `${number}.${number}.${number}` | `${number}.${number}.${number}
|
|
9
|
+
export type AtLeastVersionConstraint = `${number}.${number}.${number}-${string}` | `${number}.${number}.${number}` | `${number}.${number}` | `${number}`;
|
|
10
10
|
export type VersionConstraint = AtLeastVersionConstraint | SemverVersionConstraint;
|
|
11
11
|
/**
|
|
12
12
|
* Passing a string for the value is shorthand for a '>=' constraint
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DependencyConstraint.d.ts","sourceRoot":"","sources":["../../src/types/DependencyConstraint.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,YAAY;IAC3B,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACxC,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CAC7B;AAED,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,GAAG,YAAY,CAAC;IAC1C,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CACxB;AACD,MAAM,MAAM,wBAAwB,GAChC,GAAG,MAAM,IAAI,MAAM,IAAI,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"DependencyConstraint.d.ts","sourceRoot":"","sources":["../../src/types/DependencyConstraint.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,YAAY;IAC3B,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACxC,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CAC7B;AAED,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,GAAG,YAAY,CAAC;IAC1C,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CACxB;AACD,MAAM,MAAM,wBAAwB,GAChC,GAAG,MAAM,IAAI,MAAM,IAAI,MAAM,IAAI,MAAM,EAAE,GACzC,GAAG,MAAM,IAAI,MAAM,IAAI,MAAM,EAAE,GAC/B,GAAG,MAAM,IAAI,MAAM,EAAE,GACrB,GAAG,MAAM,EAAE,CAAC;AAChB,MAAM,MAAM,iBAAiB,GACzB,wBAAwB,GACxB,uBAAuB,CAAC;AAC5B;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/rule-tester",
|
|
3
|
-
"version": "8.32.2-alpha.
|
|
3
|
+
"version": "8.32.2-alpha.10",
|
|
4
4
|
"description": "Tooling to test ESLint rules",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -35,21 +35,19 @@
|
|
|
35
35
|
"estree"
|
|
36
36
|
],
|
|
37
37
|
"scripts": {
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"format": "
|
|
42
|
-
"lint": "
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"test": "vitest --run --config=$INIT_CWD/vitest.config.mts",
|
|
46
|
-
"check-types": "npx nx typecheck"
|
|
38
|
+
"//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
|
|
39
|
+
"build": "yarn run -BT nx build",
|
|
40
|
+
"clean": "rimraf dist/ coverage/",
|
|
41
|
+
"format": "yarn run -T format",
|
|
42
|
+
"lint": "yarn run -BT nx lint",
|
|
43
|
+
"test": "yarn run -BT nx test",
|
|
44
|
+
"typecheck": "yarn run -BT nx typecheck"
|
|
47
45
|
},
|
|
48
46
|
"//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70",
|
|
49
47
|
"dependencies": {
|
|
50
|
-
"@typescript-eslint/parser": "8.32.2-alpha.
|
|
51
|
-
"@typescript-eslint/typescript-estree": "8.32.2-alpha.
|
|
52
|
-
"@typescript-eslint/utils": "8.32.2-alpha.
|
|
48
|
+
"@typescript-eslint/parser": "8.32.2-alpha.10",
|
|
49
|
+
"@typescript-eslint/typescript-estree": "8.32.2-alpha.10",
|
|
50
|
+
"@typescript-eslint/utils": "8.32.2-alpha.10",
|
|
53
51
|
"ajv": "^6.12.6",
|
|
54
52
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
55
53
|
"lodash.merge": "4.6.2",
|
|
@@ -62,13 +60,8 @@
|
|
|
62
60
|
"@types/json-stable-stringify-without-jsonify": "^1.0.2",
|
|
63
61
|
"@types/lodash.merge": "4.6.9",
|
|
64
62
|
"@vitest/coverage-v8": "^3.1.3",
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"espree": "^10.3.0",
|
|
68
|
-
"esprima": "^4.0.1",
|
|
69
|
-
"mocha": "^11.0.0",
|
|
70
|
-
"sinon": "^20.0.0",
|
|
71
|
-
"source-map-support": "^0.5.21",
|
|
63
|
+
"eslint": "*",
|
|
64
|
+
"rimraf": "*",
|
|
72
65
|
"typescript": "*",
|
|
73
66
|
"vitest": "^3.1.3"
|
|
74
67
|
},
|
|
@@ -78,5 +71,11 @@
|
|
|
78
71
|
},
|
|
79
72
|
"publishConfig": {
|
|
80
73
|
"access": "public"
|
|
74
|
+
},
|
|
75
|
+
"nx": {
|
|
76
|
+
"name": "rule-tester",
|
|
77
|
+
"includedScripts": [
|
|
78
|
+
"clean"
|
|
79
|
+
]
|
|
81
80
|
}
|
|
82
81
|
}
|