Skip to content

Releases: rizowski/eslint-watch

v8.0.0 - Drop Node 10 and eslint < 8 support

08 Nov 05:44
59d4809
Compare
Choose a tag to compare

Breaking

  • Dropping support for eslint 7 and below
  • Dropping support for node 10

Misc

  • Updated dependencies to their latest versions

v7.0.0 - Drop Node 8 and eslint < 7 support

28 May 16:02
55d06ff
Compare
Choose a tag to compare

Breaking

  • Dropping support for previous versions of Eslint before 7
  • Dropping support for node 8 since Eslint 7 dropped it

Misc

  • Current ESW version will support current Eslint version
  • Updated dependencies

V6.0.1 - Fix coloring and debounce

25 Sep 00:25
b5f1909
Compare
Choose a tag to compare

Fixes

  • Fix coloring output by default to reflect what eslint does ( #164 )
  • Fix debounce to actually respect value ( #164 )
  • Add .eslintcache to default ignore to avoid double lint in watch mode ( #163 )

Misc

  • Update dependencies ( #164 )

V6.0.0 - Support Eslint 6

17 Jul 15:10
2e2304f
Compare
Choose a tag to compare

Breaking

  • Remove support for node 6 (#157)

Fixes

  • Have esw watch respect --ext flag (#161 #160)

Misc

  • Add support for eslint 6 (peer dependency bump) (#157)

v5.1.2 - Fix dependencies

26 Apr 22:05
29698ff
Compare
Choose a tag to compare

Fix

  • move lodash.debounce to dependencies list

Misc

  • Upgraded babel dependencies
  • Changed prepublish command to prepare

v5.1.1

26 Apr 22:09
cbb08b8
Compare
Choose a tag to compare

Bad build do not use.

v5.1.0 - new flag and small fixes

26 Apr 16:35
335ed89
Compare
Choose a tag to compare

Feature

  • Added --watch-delay flag for use cases where multiple files are changed at once. Defaulted to 300 ms (#156 #150)

Fixes

Misc

  • Updated dependencies to resolve security concerns (#153 #155)

v5.0.1 - Execution Issues

05 Mar 20:13
abfcc95
Compare
Choose a tag to compare

Fixes

  • Fixed issues with trying to run esw due to polyfill not being at the beginning
  • Fixed issues with printing out the watch object

v5.0.0 - Rewrite

05 Mar 19:51
a2e1cef
Compare
Choose a tag to compare

Features

  • watch-ignore flag now available to add additional ignore directories for situations ESW doesn't already cover. (build, dist)
  • Help text now includes a section of ESW options.

Breaking

  • Help format will now follow eslint's header help format.
  • --esw-version is removed in favor of --version and --versions
  • --version is now overridden by ESW. It will return the ESW version.
  • --format is no longer overridden or defaulted to simple-detail
  • ESW formaters are pulled out of ESW and will be published as separate packages sometime in the future.
  • --quiet will now mute the clean message on successful relints

Fixes

  • CTRL + C X2 should no longer be an issue. (#80)

Misc

  • Formatters for ESW are going to be moved out into a separate package. Adds too much complexity and I don't know how many people actually care about them.
  • Moved away from trying to guess where eslint lives or trying to use Eslint's API which is inconsistent with its CLI options. Now ESW utilizes child_process through execa in favor of PATH executables.

V4.0.2 - Add --rule to cli options

18 Jul 18:20
3a789d2
Compare
Choose a tag to compare

Fixes