Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency eslint-import-resolver-typescript to v3 #16

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

cu-infra-svc-git
Copy link
Contributor

@cu-infra-svc-git cu-infra-svc-git commented Apr 24, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-import-resolver-typescript ^2.7.1 -> ^3.8.3 age adoption passing confidence

Release Notes

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.8.3

Compare Source

Patch Changes

v3.8.2

Compare Source

Patch Changes

v3.8.1

Compare Source

Patch Changes

v3.8.0

Compare Source

Minor Changes
  • #​345 fcc8883 Thanks @​carlocorradini! - Enable the mapper function just for a set of allowed files. Improves project discovery using glob and POSIX separator.

  • #​346 c124e87 Thanks @​carlocorradini! - Update get-tsconfig to the the latest version. We now support the ${configDir} variable, introduced in TypeScript 5.5.

v3.7.0

Compare Source

Minor Changes
  • #​326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    
    module.exports = {
      settings: {
        'import-x/resolver-next': [
          createTypeScriptImportResolver({
            alwaysTryTypes: true,
          }),
        ],
      },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

v3.6.3

Compare Source

Patch Changes

v3.6.1

Compare Source

Patch Changes

v3.6.0

Compare Source

Minor Changes

v3.5.5

Compare Source

Patch Changes

v3.5.4

Compare Source

Patch Changes

v3.5.3

Compare Source

Patch Changes
  • #​206 6531bad Thanks @​marvinhagemeister! - Only try to resolve a module directory when we know that the path is a directory. This can lead to a 15% speedup on projects with many files.

v3.5.2

Compare Source

Patch Changes

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Minor Changes
Patch Changes

v3.4.2

Compare Source

Patch Changes

v3.4.1

Compare Source

Patch Changes

v3.4.0

Compare Source

Minor Changes

v3.3.0

Compare Source

Minor Changes
  • #​154 42f2dd6 Thanks @​JounQin! - feat: add externsionAlias option support, .d.([cm]?ts|tsx) are always preferred than .([cm]?js|jsx)

    typescript resolves typescript/lib/typescript.d.ts instead of typescript/lib/typescript.js by default

  • #​154 42f2dd6 Thanks @​JounQin! - feat: exports globSync, defaultExtensions, defaultMainFields, defaultConditionNames and defaultExtensionAlias for reusing

Patch Changes

v3.2.7

Compare Source

Patch Changes

v3.2.6

Compare Source

Patch Changes

v3.2.5

Compare Source

Patch Changes

v3.2.4

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes

v3.1.5

Compare Source

Patch Changes

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes
3.1.1 (2022-06-27)
Bug Fixes

v3.1.1

Compare Source

v3.1.0

Compare Source

⚠ BREAKING CHANGES
  • use enhanced-resolve instead
Features

v3.0.0

Compare Source

⚠ BREAKING CHANGES
  • remove depracated directory option
  • use get-tsconfig to replace tsconfig-paths
  • bump globby, use synckit for sync fn
  • deps: bump tsconfig-paths to ^4.0.0 (#​104)
Features
  • bump globby, use synckit for sync fn (322cb29)

  • ignore node_modules folder in projects option glob (#​105) (1e1b5a6)

  • remove depracated directory option (67c8d59)

  • use get-tsconfig to replace tsconfig-paths (78a08e0)

  • deps: bump tsconfig-paths to ^4.0.0 (#​104) (b2edbc8)

2.7.1 (2022-04-03)
Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 2am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@codecov
Copy link

codecov bot commented Apr 24, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (407118f) to head (0f5ad45).

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff            @@
##              main       #16   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            1         1           
  Lines          144       144           
  Branches        14        14           
=========================================
  Hits           144       144           

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 407118f...0f5ad45. Read the comment docs.

@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch from 1805977 to a859bf7 Compare June 1, 2023 00:24
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch 2 times, most recently from d97cf3b to 5e0a110 Compare August 2, 2023 22:44
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch from 5e0a110 to 9de76e0 Compare August 10, 2023 00:20
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch from 9de76e0 to a8640b7 Compare May 28, 2024 00:56
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch from a8640b7 to 0caf9c5 Compare August 27, 2024 00:57
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch from 0caf9c5 to 8095d4b Compare December 4, 2024 00:57
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch 2 times, most recently from 3ce379e to 804816c Compare February 18, 2025 00:57
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch from 804816c to 95502cc Compare February 19, 2025 00:57
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/eslint-import-resolver-typescript-3.x branch from 95502cc to 0f5ad45 Compare February 21, 2025 00:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant