File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## Unreleased
3
+ ## 0.4.17
4
4
5
- - Fix detection of local components to not generate warning on for variable inside JSX files that follow React component naming
5
+ - Fix detection of local components to not generate warning on for variable inside JSX files that follow React component naming (fixes #75 )
6
+ - Update types to not require extra unnecessary ` .default ` property access under TS node16 module resolution (fixes #70 )
6
7
7
8
## 0.4.16
8
9
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-plugin-react-refresh" ,
3
- "version" : " 0.4.16 " ,
3
+ "version" : " 0.4.17 " ,
4
4
"type" : " module" ,
5
5
"license" : " MIT" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ await build({
17
17
} ) ;
18
18
19
19
execSync ( "cp LICENSE README.md dist/" ) ;
20
- execSync ( "cp src/types.ts dist/index.d.ts" ) ;
20
+ execSync ( "cp src/types.d. ts dist/index.d.ts" ) ;
21
21
22
22
writeFileSync (
23
23
"dist/package.json" ,
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ declare const _default: {
11
11
} ;
12
12
} ;
13
13
14
- export default _default ;
14
+ export = { default : _default } ;
You can’t perform that action at this time.
0 commit comments