File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,15 @@ jobs:
25
25
- name : Checkout Repo
26
26
uses : actions/checkout@v4
27
27
28
+ - name : Setup target Node.js to enable Corepack
29
+ uses : actions/setup-node@v4
30
+ with :
31
+ node-version : ${{ matrix.node }}
32
+
28
33
- name : Enable Corepack
29
34
run : corepack enable
30
35
31
- - name : Setup Node.js ${{ matrix.node }}
36
+ - name : Setup Node.js ${{ matrix.node }} with cache
32
37
uses : actions/setup-node@v4
33
38
with :
34
39
node-version : ${{ matrix.node }}
Original file line number Diff line number Diff line change 1
1
# eslint-plugin-import-x
2
2
3
+ ## 0.5.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [ #93 ] ( https://github.com/un-ts/eslint-plugin-import-x/pull/93 ) [ ` 64bf1a6 ` ] ( https://github.com/un-ts/eslint-plugin-import-x/commit/64bf1a6be90c54a34115e83894de8b4e57ce6a33 ) Thanks [ @SukkaW ] ( https://github.com/SukkaW ) ! - fix: enable isolation parsing w/ typescript-eslint v8
8
+
3
9
## 0.5.1
4
10
5
11
### Patch Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-plugin-import-x" ,
3
- "version" : " 0.5.1 " ,
3
+ "version" : " 0.5.2 " ,
4
4
"description" : " Import with sanity." ,
5
5
"repository" : " git+https://github.com/un-ts/eslint-plugin-import-x" ,
6
6
"author" : " JounQin <admin@1stg.me> (https://www.1stG.me)" ,
Original file line number Diff line number Diff line change @@ -89,7 +89,11 @@ export function parse(
89
89
// "project" or "projects" in parserOptions. Removing these options means the parser will
90
90
// only parse one file in isolate mode, which is much, much faster.
91
91
// https://github.com/import-js/eslint-plugin-import/issues/1408#issuecomment-509298962
92
+
93
+ // TODO: prefer https://github.com/typescript-eslint/typescript-eslint/pull/9233 when typescript-eslint v8
94
+ // become stable
92
95
delete parserOptions . EXPERIMENTAL_useProjectService
96
+ delete parserOptions . projectService
93
97
delete parserOptions . project
94
98
delete parserOptions . projects
95
99
You can’t perform that action at this time.
0 commit comments