File tree 3 files changed +10
-7
lines changed
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.5.1 and 1.5.2 - 2024-10-15
4
+
5
+ ### Bug fixes
6
+
7
+ - Fix issue where eager loaded files were not being linted when not using meteor main modules.
8
+
3
9
## 1.5.0 - 2024-04-26
4
10
5
11
### Bug fixes
Original file line number Diff line number Diff line change @@ -275,19 +275,16 @@ class Walker {
275
275
return ;
276
276
}
277
277
}
278
- if ( ! fs . existsSync ( path . join ( this . appPath , 'server' ) ) ) {
279
- debug ( 'No server folder found in the app' ) ;
280
- return ;
281
- }
282
- debug ( 'Starting from meteor server folder' ) ;
278
+ debug ( 'Starting from eagerly loaded folders' ) ;
283
279
284
280
handleFolder (
285
- path . join ( this . appPath , 'server' ) ,
281
+ path . join ( this . appPath ) ,
286
282
this . appPath ,
287
283
archList ,
288
284
onFile ,
289
285
this . cachedParsedFile
290
286
) ;
287
+
291
288
fs . writeFileSync ( this . filePath ( ) , JSON . stringify ( this . cachedParsedFile ) ) ;
292
289
}
293
290
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @quave/eslint-plugin-meteor-quave" ,
3
- "version" : " 1.5.1 " ,
3
+ "version" : " 1.5.2 " ,
4
4
"description" : " Quave linting rules for ESLint" ,
5
5
"main" : " lib/index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments