Bump the npm group with 2 updates (#2045)
* 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.55.0 to 8.56.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.55.0...v8.56.0) Updates `eslint-plugin-import` from 2.29.0 to 2.29.1 - [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.29.0...v2.29.1) --- 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-patch 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
511f073971
commit
144b7d5b16
32 changed files with 618 additions and 251 deletions
16
node_modules/eslint-plugin-import/CHANGELOG.md
generated
vendored
16
node_modules/eslint-plugin-import/CHANGELOG.md
generated
vendored
|
|
@ -6,6 +6,13 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.29.1] - 2023-12-14
|
||||
|
||||
### Fixed
|
||||
- [`no-extraneous-dependencies`]: ignore `export type { ... } from '...'` when `includeTypes` is `false` ([#2919], thanks [@Pandemic1617])
|
||||
- [`no-unused-modules`]: support export patterns with array destructuring ([#2930], thanks [@ljharb])
|
||||
- [Deps] update `tsconfig-paths` ([#2447], thanks [@domdomegg])
|
||||
|
||||
## [2.29.0] - 2023-10-22
|
||||
|
||||
### Added
|
||||
|
|
@ -1094,6 +1101,7 @@ for info on changes for earlier releases.
|
|||
|
||||
[`memo-parser`]: ./memo-parser/README.md
|
||||
|
||||
[#2919]: https://github.com/import-js/eslint-plugin-import/pull/2919
|
||||
[#2884]: https://github.com/import-js/eslint-plugin-import/pull/2884
|
||||
[#2854]: https://github.com/import-js/eslint-plugin-import/pull/2854
|
||||
[#2851]: https://github.com/import-js/eslint-plugin-import/pull/2851
|
||||
|
|
@ -1431,6 +1439,8 @@ 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
|
||||
|
||||
[#2930]: https://github.com/import-js/eslint-plugin-import/issues/2930
|
||||
[#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
|
||||
|
|
@ -1438,6 +1448,7 @@ for info on changes for earlier releases.
|
|||
[#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
|
||||
[#2447]: https://github.com/import-js/eslint-plugin-import/issues/2447
|
||||
[#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
|
||||
|
|
@ -1556,7 +1567,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.29.0...HEAD
|
||||
[Unreleased]: https://github.com/import-js/eslint-plugin-import/compare/v2.29.1...HEAD
|
||||
[2.29.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1
|
||||
[2.29.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.28.1...v2.29.0
|
||||
[2.28.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.28.0...v2.28.1
|
||||
[2.28.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0
|
||||
|
|
@ -1708,6 +1720,7 @@ for info on changes for earlier releases.
|
|||
[@devinrhode2]: https://github.com/devinrhode2
|
||||
[@devongovett]: https://github.com/devongovett
|
||||
[@dmnd]: https://github.com/dmnd
|
||||
[@domdomegg]: https://github.com/domdomegg
|
||||
[@duncanbeevers]: https://github.com/duncanbeevers
|
||||
[@dwardu]: https://github.com/dwardu
|
||||
[@echenley]: https://github.com/echenley
|
||||
|
|
@ -1830,6 +1843,7 @@ for info on changes for earlier releases.
|
|||
[@ntdb]: https://github.com/ntdb
|
||||
[@nwalters512]: https://github.com/nwalters512
|
||||
[@ombene]: https://github.com/ombene
|
||||
[@Pandemic1617]: https://github.com/Pandemic1617
|
||||
[@ota-meshi]: https://github.com/ota-meshi
|
||||
[@OutdatedVersion]: https://github.com/OutdatedVersion
|
||||
[@panrafal]: https://github.com/panrafal
|
||||
|
|
|
|||
3
node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js
generated
vendored
3
node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js
generated
vendored
File diff suppressed because one or more lines are too long
23
node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js
generated
vendored
23
node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js
generated
vendored
File diff suppressed because one or more lines are too long
10
node_modules/eslint-plugin-import/package.json
generated
vendored
10
node_modules/eslint-plugin-import/package.json
generated
vendored
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "eslint-plugin-import",
|
||||
"version": "2.29.0",
|
||||
"version": "2.29.1",
|
||||
"description": "Import with sanity.",
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
|
|
@ -69,11 +69,11 @@
|
|||
"babel-preset-flow": "^6.23.0",
|
||||
"babel-register": "^6.26.0",
|
||||
"babylon": "^6.18.0",
|
||||
"chai": "^4.3.7",
|
||||
"chai": "^4.3.10",
|
||||
"cross-env": "^4.0.0",
|
||||
"escope": "^3.6.0",
|
||||
"eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8",
|
||||
"eslint-doc-generator": "^1.4.3",
|
||||
"eslint-doc-generator": "^1.6.1",
|
||||
"eslint-import-resolver-node": "file:./resolvers/node",
|
||||
"eslint-import-resolver-typescript": "^1.0.2 || ^1.1.1",
|
||||
"eslint-import-resolver-webpack": "file:./resolvers/webpack",
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
"jackspeak": "=2.1.1",
|
||||
"linklocal": "^2.8.2",
|
||||
"lodash.isarray": "^4.0.0",
|
||||
"markdownlint-cli": "^0.35.0",
|
||||
"markdownlint-cli": "^0.38.0",
|
||||
"mocha": "^3.5.3",
|
||||
"npm-which": "^3.0.1",
|
||||
"nyc": "^11.9.0",
|
||||
|
|
@ -119,6 +119,6 @@
|
|||
"object.groupby": "^1.0.1",
|
||||
"object.values": "^1.1.7",
|
||||
"semver": "^6.3.1",
|
||||
"tsconfig-paths": "^3.14.2"
|
||||
"tsconfig-paths": "^3.15.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue