@depup/typescript-eslint__types 8.65.0-depup.0 → 8.66.0-depup.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/README.md +2 -2
- package/changes.json +1 -1
- package/dist/generated/ast-spec.d.ts +9 -0
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ npm install @depup/typescript-eslint__types
|
|
|
13
13
|
|
|
14
14
|
| Field | Value |
|
|
15
15
|
|-------|-------|
|
|
16
|
-
| Original | [@typescript-eslint/types](https://www.npmjs.com/package/@typescript-eslint/types) @ 8.
|
|
17
|
-
| Processed | 2026-
|
|
16
|
+
| Original | [@typescript-eslint/types](https://www.npmjs.com/package/@typescript-eslint/types) @ 8.66.0 |
|
|
17
|
+
| Processed | 2026-08-04 |
|
|
18
18
|
| Smoke test | passed |
|
|
19
19
|
| Deps updated | 0 |
|
|
20
20
|
|
package/changes.json
CHANGED
|
@@ -869,6 +869,15 @@ export declare interface ImportExpression extends BaseNode {
|
|
|
869
869
|
* ```
|
|
870
870
|
*/
|
|
871
871
|
options: Expression | null;
|
|
872
|
+
/**
|
|
873
|
+
* The phase modifier of the import.
|
|
874
|
+
* @example
|
|
875
|
+
* ```ts
|
|
876
|
+
* import('mod'); // phase: null
|
|
877
|
+
* import.defer('mod'); // phase: defer
|
|
878
|
+
* ```
|
|
879
|
+
*/
|
|
880
|
+
phase: 'defer' | null;
|
|
872
881
|
source: Expression;
|
|
873
882
|
}
|
|
874
883
|
declare type ImportKind = ExportAndImportKind;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depup/typescript-eslint__types",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.66.0-depup.0",
|
|
4
4
|
"description": "Types for the TypeScript-ESTree AST spec (with updated dependencies)",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -66,9 +66,6 @@
|
|
|
66
66
|
"build": {
|
|
67
67
|
"dependsOn": [
|
|
68
68
|
"copy-ast-spec"
|
|
69
|
-
],
|
|
70
|
-
"inputs": [
|
|
71
|
-
"{projectRoot}/src/generated/**/*"
|
|
72
69
|
]
|
|
73
70
|
},
|
|
74
71
|
"copy-ast-spec": {
|
|
@@ -111,8 +108,8 @@
|
|
|
111
108
|
"changes": {},
|
|
112
109
|
"depsUpdated": 0,
|
|
113
110
|
"originalPackage": "@typescript-eslint/types",
|
|
114
|
-
"originalVersion": "8.
|
|
115
|
-
"processedAt": "2026-
|
|
111
|
+
"originalVersion": "8.66.0",
|
|
112
|
+
"processedAt": "2026-08-04T00:39:48.792Z",
|
|
116
113
|
"smokeTest": "passed"
|
|
117
114
|
}
|
|
118
115
|
}
|