You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hide error message in a private field to avoid duplicate logs (#421](https://github.com/okonet/lint-staged/issues/421)) ([4d6f165 (https://github.com/okonet/lint-staged/commit/4d6f165))
Drop support for Node.js 4 (#399](https://github.com/okonet/lint-staged/issues/399)) ([05a062d (https://github.com/okonet/lint-staged/commit/05a062d))
Features
Remove support for npm scripts (#390](https://github.com/okonet/lint-staged/issues/390)) ([d8b836c (https://github.com/okonet/lint-staged/commit/d8b836c))
Performance Improvements
Switch from minimatch to micromatch (#388](https://github.com/okonet/lint-staged/issues/388)) ([5a333a0 (https://github.com/okonet/lint-staged/commit/5a333a0))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi!
A new version was just released of
lint-staged, so Doppinshas upgraded your project's dependency ranges.
Make sure that it doesn't break anything, and happy merging!
Upgraded lint-staged from
^5.0.0to^7.0.4Changelog:
Version 7.0.4
7.0.4 (
https://github.com/okonet/lint-staged/compare/v7.0.3...v7.0.4) (2018-04-05)Bug Fixes
https://github.com/okonet/lint-staged/commit/29fc479)), closes [#419(https://github.com/okonet/lint-staged/issues/419)Version 7.0.3
7.0.3 (
https://github.com/okonet/lint-staged/compare/v7.0.2...v7.0.3) (2018-04-03)Bug Fixes
https://github.com/okonet/lint-staged/commit/b4fbc3b)), closes [#419(https://github.com/okonet/lint-staged/issues/419)https://github.com/okonet/lint-staged/commit/06635c6))Version 7.0.2
7.0.2 (
https://github.com/okonet/lint-staged/compare/v7.0.1...v7.0.2) (2018-04-01)Bug Fixes
#421](https://github.com/okonet/lint-staged/issues/421)) ([4d6f165 (https://github.com/okonet/lint-staged/commit/4d6f165))Version 7.0.1
7.0.1 (
https://github.com/okonet/lint-staged/compare/v7.0.0...v7.0.1) (2018-03-30)Bug Fixes
https://github.com/okonet/lint-staged/commit/31176c9))Version 7.0.0
7.0.0 (
https://github.com/okonet/lint-staged/compare/v6.1.1...v7.0.0) (2018-02-21)Bug Fixes
https://github.com/okonet/lint-staged/commit/267ff0f))Code Refactoring
#399](https://github.com/okonet/lint-staged/issues/399)) ([05a062d (https://github.com/okonet/lint-staged/commit/05a062d))Features
#390](https://github.com/okonet/lint-staged/issues/390)) ([d8b836c (https://github.com/okonet/lint-staged/commit/d8b836c))Performance Improvements
#388](https://github.com/okonet/lint-staged/issues/388)) ([5a333a0 (https://github.com/okonet/lint-staged/commit/5a333a0))BREAKING CHANGES
Requires Node.js v6 or later.
Remove implicit support for running npm scripts.
Consider example
lint-stagedconfig:{ "name": "My project", "version": "0.1.0", "scripts": { "my-custom-script": "linter --arg1 --arg2", "precommit": "lint-staged" }, "lint-staged": { "*.js": ["my-custom-script", "git add"] } }The list of commands should be changed to the following:
The following
minimatchoptions are not supported inmicromatch:nocomment: https://github.com/isaacs/minimatch#nocommentflipnegate: https://github.com/isaacs/minimatch#flipnegateVersion 6.1.1
6.1.1 (
https://github.com/okonet/lint-staged/compare/v6.1.0...v6.1.1) (2018-02-16)Bug Fixes
https://github.com/okonet/lint-staged/commit/677e860))Version 6.1.0
6.1.0 (
https://github.com/okonet/lint-staged/compare/v6.0.1...v6.1.0) (2018-01-26)Features
ignoreconfig option (#385](https://github.com/okonet/lint-staged/issues/385)) ([5b7bc67 (https://github.com/okonet/lint-staged/commit/5b7bc67))Version 6.0.1
6.0.1 (
https://github.com/okonet/lint-staged/compare/v6.0.0...v6.0.1) (2018-01-19)Bug Fixes
https://github.com/okonet/lint-staged/commit/80596c3))Version 6.0.0
6.0.0 (
https://github.com/okonet/lint-staged/compare/v5.0.0...v6.0.0) (2017-12-01)Features
#344](https://github.com/okonet/lint-staged/issues/344)) ([8f214f0 (https://github.com/okonet/lint-staged/commit/8f214f0))BREAKING CHANGES
verboseconfig option has been deprecated and is supersededby the command line option
--debug.