lint-to-the-future-eslint
Advanced tools
Comparing version 0.3.1 to 0.4.0
@@ -0,1 +1,5 @@ | ||
v0.4.0 / 2022-05-12 | ||
================== | ||
* Make sure `.ts` files are also processed in list command #5 from @jamescdavis | ||
v0.3.1 / 2021-12-23 | ||
@@ -2,0 +6,0 @@ ================== |
@@ -71,3 +71,3 @@ const { readFileSync, writeFileSync, lstatSync } = require('fs'); | ||
const files = walkSync(cwd, { | ||
globs: ['**/*.js'], | ||
globs: ['**/*.js', '**/*.ts'], | ||
ignore: ignoreFile || ['node_modules/*'], | ||
@@ -79,3 +79,3 @@ }); | ||
files.forEach((filePath) => { | ||
// prevent odd times when directories might end with `.js`; | ||
// prevent odd times when directories might end with `.js` or `.ts`; | ||
if (!lstatSync(filePath).isFile()) { | ||
@@ -82,0 +82,0 @@ return; |
{ | ||
"name": "lint-to-the-future-eslint", | ||
"version": "0.3.1", | ||
"version": "0.4.0", | ||
"repository": "https://github.com/mansona/lint-to-the-future-eslint", | ||
@@ -5,0 +5,0 @@ "scripts": { |
8251