@typescript-eslint/utils 8.45.1-alpha.2 → 8.45.1-alpha.4

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.
@@ -171,7 +171,10 @@ declare namespace Linter {
171
171
  */
172
172
  message: string;
173
173
  messageId?: string;
174
- nodeType: string;
174
+ /**
175
+ * @deprecated `nodeType` is deprecated and will be removed in the next major version.
176
+ */
177
+ nodeType?: string;
175
178
  /**
176
179
  * The ID of the rule which makes this message.
177
180
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/utils",
3
- "version": "8.45.1-alpha.2",
3
+ "version": "8.45.1-alpha.4",
4
4
  "description": "Utilities for working with TypeScript + ESLint together",
5
5
  "files": [
6
6
  "dist",
@@ -62,9 +62,9 @@
62
62
  },
63
63
  "dependencies": {
64
64
  "@eslint-community/eslint-utils": "^4.7.0",
65
- "@typescript-eslint/scope-manager": "8.45.1-alpha.2",
66
- "@typescript-eslint/types": "8.45.1-alpha.2",
67
- "@typescript-eslint/typescript-estree": "8.45.1-alpha.2"
65
+ "@typescript-eslint/scope-manager": "8.45.1-alpha.4",
66
+ "@typescript-eslint/types": "8.45.1-alpha.4",
67
+ "@typescript-eslint/typescript-estree": "8.45.1-alpha.4"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "eslint": "^8.57.0 || ^9.0.0",