Bump the npm group with 2 updates (#1819)
* Bump the npm group with 2 updates Bumps the npm group with 2 updates: [eslint](https://github.com/eslint/eslint) and [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import). Updates `eslint` from 8.45.0 to 8.46.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.45.0...v8.46.0) Updates `eslint-plugin-import` from 2.27.5 to 2.28.0 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: eslint-plugin-import dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * Update checked-in dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
a6b0ced86b
commit
e7e35baaf0
1408 changed files with 27215 additions and 9910 deletions
47
node_modules/eslint-plugin-import/CHANGELOG.md
generated
vendored
47
node_modules/eslint-plugin-import/CHANGELOG.md
generated
vendored
|
|
@ -6,6 +6,28 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.28.0] - 2023-07-27
|
||||
|
||||
### Fixed
|
||||
- [`no-duplicates`]: remove duplicate identifiers in duplicate imports ([#2577], thanks [@joe-matsec])
|
||||
- [`consistent-type-specifier-style`]: fix accidental removal of comma in certain cases ([#2754], thanks [@bradzacher])
|
||||
- [Perf] `ExportMap`: Improve `ExportMap.for` performance on larger codebases ([#2756], thanks [@leipert])
|
||||
- [`no-extraneous-dependencies`]/TypeScript: do not error when importing inline type from dev dependencies ([#1820], thanks [@andyogo])
|
||||
- [`newline-after-import`]/TypeScript: do not error when re-exporting a namespaced import ([#2832], thanks [@laurens-dg])
|
||||
- [`order`]: partial fix for [#2687] (thanks [@ljharb])
|
||||
- [`no-duplicates`]: Detect across type and regular imports ([#2835], thanks [@benkrejci])
|
||||
- [`extensions`]: handle `.` and `..` properly ([#2778], thanks [@benasher44])
|
||||
- [`no-unused-modules`]: improve schema (thanks [@ljharb])
|
||||
- [`no-unused-modules`]: report error on binding instead of parent export ([#2842], thanks [@Chamion])
|
||||
|
||||
### Changed
|
||||
- [Docs] [`no-duplicates`]: fix example schema ([#2684], thanks [@simmo])
|
||||
- [Docs] [`group-exports`]: fix syntax highlighting ([#2699], thanks [@devinrhode2])
|
||||
- [Docs] [`extensions`]: reference node ESM behavior ([#2748], thanks [@xM8WVqaG])
|
||||
- [Refactor] [`exports-last`]: use `array.prototype.findlastindex` (thanks [@ljharb])
|
||||
- [Refactor] [`no-anonymous-default-export`]: use `object.fromentries` (thanks [@ljharb])
|
||||
- [Refactor] [`no-unused-modules`]: use `array.prototype.flatmap` (thanks [@ljharb])
|
||||
|
||||
## [2.27.5] - 2023-01-16
|
||||
|
||||
### Fixed
|
||||
|
|
@ -1057,6 +1079,15 @@ for info on changes for earlier releases.
|
|||
|
||||
[`memo-parser`]: ./memo-parser/README.md
|
||||
|
||||
[#2842]: https://github.com/import-js/eslint-plugin-import/pull/2842
|
||||
[#2835]: https://github.com/import-js/eslint-plugin-import/pull/2835
|
||||
[#2832]: https://github.com/import-js/eslint-plugin-import/pull/2832
|
||||
[#2778]: https://github.com/import-js/eslint-plugin-import/pull/2778
|
||||
[#2756]: https://github.com/import-js/eslint-plugin-import/pull/2756
|
||||
[#2754]: https://github.com/import-js/eslint-plugin-import/pull/2754
|
||||
[#2748]: https://github.com/import-js/eslint-plugin-import/pull/2748
|
||||
[#2735]: https://github.com/import-js/eslint-plugin-import/pull/2735
|
||||
[#2699]: https://github.com/import-js/eslint-plugin-import/pull/2699
|
||||
[#2664]: https://github.com/import-js/eslint-plugin-import/pull/2664
|
||||
[#2613]: https://github.com/import-js/eslint-plugin-import/pull/2613
|
||||
[#2608]: https://github.com/import-js/eslint-plugin-import/pull/2608
|
||||
|
|
@ -1381,10 +1412,13 @@ for info on changes for earlier releases.
|
|||
[#211]: https://github.com/import-js/eslint-plugin-import/pull/211
|
||||
[#164]: https://github.com/import-js/eslint-plugin-import/pull/164
|
||||
[#157]: https://github.com/import-js/eslint-plugin-import/pull/157
|
||||
[#2687]: https://github.com/import-js/eslint-plugin-import/issues/2687
|
||||
[#2684]: https://github.com/import-js/eslint-plugin-import/issues/2684
|
||||
[#2674]: https://github.com/import-js/eslint-plugin-import/issues/2674
|
||||
[#2668]: https://github.com/import-js/eslint-plugin-import/issues/2668
|
||||
[#2666]: https://github.com/import-js/eslint-plugin-import/issues/2666
|
||||
[#2665]: https://github.com/import-js/eslint-plugin-import/issues/2665
|
||||
[#2577]: https://github.com/import-js/eslint-plugin-import/issues/2577
|
||||
[#2444]: https://github.com/import-js/eslint-plugin-import/issues/2444
|
||||
[#2412]: https://github.com/import-js/eslint-plugin-import/issues/2412
|
||||
[#2392]: https://github.com/import-js/eslint-plugin-import/issues/2392
|
||||
|
|
@ -1503,7 +1537,8 @@ for info on changes for earlier releases.
|
|||
[#119]: https://github.com/import-js/eslint-plugin-import/issues/119
|
||||
[#89]: https://github.com/import-js/eslint-plugin-import/issues/89
|
||||
|
||||
[Unreleased]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...HEAD
|
||||
[Unreleased]: https://github.com/import-js/eslint-plugin-import/compare/v2.28.0...HEAD
|
||||
[2.28.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0
|
||||
[2.27.5]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.4...v2.27.5
|
||||
[2.27.4]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.3...v2.27.4
|
||||
[2.27.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.2...v2.27.3
|
||||
|
|
@ -1609,6 +1644,7 @@ for info on changes for earlier releases.
|
|||
[@alexgorbatchev]: https://github.com/alexgorbatchev
|
||||
[@andreubotella]: https://github.com/andreubotella
|
||||
[@AndrewLeedham]: https://github.com/AndrewLeedham
|
||||
[@andyogo]: https://github.com/andyogo
|
||||
[@aravindet]: https://github.com/aravindet
|
||||
[@arvigeus]: https://github.com/arvigeus
|
||||
[@asapach]: https://github.com/asapach
|
||||
|
|
@ -1621,6 +1657,8 @@ for info on changes for earlier releases.
|
|||
[@BarryThePenguin]: https://github.com/BarryThePenguin
|
||||
[@be5invis]: https://github.com/be5invis
|
||||
[@beatrizrezener]: https://github.com/beatrizrezener
|
||||
[@benasher44]: https://github.com/benasher44
|
||||
[@benkrejci]: https://github.com/benkrejci
|
||||
[@benmosher]: https://github.com/benmosher
|
||||
[@benmunro]: https://github.com/benmunro
|
||||
[@BenoitZugmeyer]: https://github.com/BenoitZugmeyer
|
||||
|
|
@ -1633,6 +1671,7 @@ for info on changes for earlier releases.
|
|||
[@bradzacher]: https://github.com/bradzacher
|
||||
[@brendo]: https://github.com/brendo
|
||||
[@brettz9]: https://github.com/brettz9
|
||||
[@Chamion]: https://github.com/Chamion
|
||||
[@charlessuh]: https://github.com/charlessuh
|
||||
[@charpeni]: https://github.com/charpeni
|
||||
[@cherryblossom000]: https://github.com/cherryblossom000
|
||||
|
|
@ -1645,6 +1684,7 @@ for info on changes for earlier releases.
|
|||
[@darkartur]: https://github.com/darkartur
|
||||
[@davidbonnet]: https://github.com/davidbonnet
|
||||
[@dbrewer5]: https://github.com/dbrewer5
|
||||
[@devinrhode2]: https://github.com/devinrhode2
|
||||
[@devongovett]: https://github.com/devongovett
|
||||
[@dmnd]: https://github.com/dmnd
|
||||
[@duncanbeevers]: https://github.com/duncanbeevers
|
||||
|
|
@ -1699,6 +1739,7 @@ for info on changes for earlier releases.
|
|||
[@jimbolla]: https://github.com/jimbolla
|
||||
[@jkimbo]: https://github.com/jkimbo
|
||||
[@joaovieira]: https://github.com/joaovieira
|
||||
[@joe-matsec]: https://github.com/joe-matsec
|
||||
[@johndevedu]: https://github.com/johndevedu
|
||||
[@johnthagen]: https://github.com/johnthagen
|
||||
[@jonboiser]: https://github.com/jonboiser
|
||||
|
|
@ -1720,7 +1761,9 @@ for info on changes for earlier releases.
|
|||
[@KostyaZgara]: https://github.com/KostyaZgara
|
||||
[@kylemh]: https://github.com/kylemh
|
||||
[@laysent]: https://github.com/laysent
|
||||
[@laurens-dg]: https://github.com/laurens-dg
|
||||
[@le0nik]: https://github.com/le0nik
|
||||
[@leipert]: https://github.com/leipert
|
||||
[@lemonmade]: https://github.com/lemonmade
|
||||
[@lencioni]: https://github.com/lencioni
|
||||
[@leonardodino]: https://github.com/leonardodino
|
||||
|
|
@ -1800,6 +1843,7 @@ for info on changes for earlier releases.
|
|||
[@sheepsteak]: https://github.com/sheepsteak
|
||||
[@silviogutierrez]: https://github.com/silviogutierrez
|
||||
[@SimenB]: https://github.com/SimenB
|
||||
[@simmo]: https://github.com/simmo
|
||||
[@sindresorhus]: https://github.com/sindresorhus
|
||||
[@singles]: https://github.com/singles
|
||||
[@skozin]: https://github.com/skozin
|
||||
|
|
@ -1837,6 +1881,7 @@ for info on changes for earlier releases.
|
|||
[@wKich]: https://github.com/wKich
|
||||
[@wschurman]: https://github.com/wschurman
|
||||
[@wtgtybhertgeghgtwtg]: https://github.com/wtgtybhertgeghgtwtg
|
||||
[@xM8WVqaG]: https://github.com/xM8WVqaG
|
||||
[@xpl]: https://github.com/xpl
|
||||
[@yordis]: https://github.com/yordis
|
||||
[@zloirock]: https://github.com/zloirock
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue