Skip to content

Commit

Permalink
5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS committed Nov 17, 2018
1 parent e585fbf commit 3901ff5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# eslint-nibble Changelog

### 5.0.0
Here are the main changes in 5.0.0, for details, see the notes for each beta

- (Breaking) Move eslint to a peer dependency (#52). You should install eslint
yourself, and eslint-nibble will use the version that you've installed. This should
prevent confusion about which version this tool installed, and avoid potential problems
when removing this tool and adding eslint itself.
- (Breaking) Drop support for Node < 6 (#51).
- A `--cache` option has been added to allow caching the results of linting.
This should result in _much_ faster operation, even when only running one time,
because of the way that eslint-nibble works internally. Highly recommended to use.
- Added `--rule` flag to the command line, to limit which rules are shown in the list.

### 5.0.0-beta.4
- (Feature) Add `--rule` flag
- (Fix) Remove attempts to fix npx without local installation
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Add the `--config` option to specify a different config file for ESLint to use.

### `--cache`

ESLint will cache the results of linting, causing subsequent runs to be much faster. See the
Highly recommended. ESLint will cache the results of linting, causing subsequent runs to be much faster. See the
[eslint docs](https://eslint.org/docs/user-guide/command-line-interface#--cache) for more details.

### `--cache-location`
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-nibble",
"version": "5.0.0-beta.4",
"version": "5.0.0",
"description": "Ease into ESLint, by fixing one rule at a time",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 3901ff5

Please sign in to comment.