Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: import-js/eslint-import-resolver-typescript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.5.0
Choose a base ref
...
head repository: import-js/eslint-import-resolver-typescript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.6.0
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Mar 23, 2022

  1. Copy the full SHA
    2e7b4f4 View commit details
  2. chore(release): 2.6.0

    JounQin committed Mar 23, 2022
    Copy the full SHA
    4487788 View commit details
Showing with 3,827 additions and 3,026 deletions.
  1. +1 −1 .github/workflows/ci.yml
  2. +7 −0 CHANGELOG.md
  3. +27 −23 package.json
  4. +4 −4 src/index.ts
  5. +3,788 −2,998 yarn.lock
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cach: yarn
cache: yarn

- name: Install Dependencies
run: yarn --frozen-lockfile
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [2.6.0](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/compare/v2.5.0...v2.6.0) (2022-03-23)


### Bug Fixes

* upgrade (dev)Dependencies ([#99](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/issues/99)) ([2e7b4f4](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/commit/2e7b4f420d03fe313386bb0079872c1c4be24eb5))

## [2.5.0](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/compare/v2.4.0...v2.5.0) (2021-09-13)


50 changes: 27 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-import-resolver-typescript",
"version": "2.5.0",
"version": "2.6.0",
"description": "TypeScript .ts .tsx module resolver for `eslint-plugin-import`.",
"repository": "https://github.com/alexgorbatchev/eslint-import-resolver-typescript",
"author": "Alex Gorbatchev <alex.gorbatchev@gmail.com>",
@@ -11,11 +11,15 @@
"engines": {
"node": ">=4"
},
"main": "lib/cjs",
"module": "lib",
"es2015": "lib/es2015",
"fesm5": "lib/esm",
"types": "lib",
"main": "lib/index.cjs",
"module": "lib/index.es2015.mjs",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.es2015.mjs",
"types": "./lib/index.d.ts"
},
"es2015": "lib/index.es2015.mjs",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.tsbuildinfo"
@@ -29,7 +33,7 @@
],
"scripts": {
"build": "run-p build:*",
"build:r": "r",
"build:r": "r -f cjs,es2015",
"build:ts": "tsc -b",
"lint": "run-p lint:*",
"lint:es": "eslint src --cache -f friendly",
@@ -52,30 +56,30 @@
"eslint-plugin-import": "*"
},
"dependencies": {
"debug": "^4.3.1",
"glob": "^7.1.7",
"is-glob": "^4.0.1",
"resolve": "^1.20.0",
"tsconfig-paths": "^3.9.0"
"debug": "^4.3.4",
"glob": "^7.2.0",
"is-glob": "^4.0.3",
"resolve": "^1.22.0",
"tsconfig-paths": "^3.14.1"
},
"devDependencies": {
"@1stg/lib-config": "^2.1.0",
"@types/debug": "^4.1.5",
"@types/glob": "^7.1.3",
"@types/is-glob": "^4.0.1",
"@types/node": "^15.6.1",
"@types/resolve": "^1.20.0",
"@types/unist": "^2.0.3",
"@1stg/lib-config": "^5.1.1",
"@types/debug": "^4.1.7",
"@types/glob": "^7.2.0",
"@types/is-glob": "^4.0.2",
"@types/node": "^17.0.22",
"@types/resolve": "^1.20.1",
"@types/unist": "^2.0.6",
"dummy.js": "link:dummy.js",
"eslint-import-resolver-typescript": "link:.",
"react": "^17.0.2",
"standard-version": "^9.3.0",
"type-coverage": "^2.17.5",
"typescript": "^4.3.2"
"standard-version": "^9.3.2",
"type-coverage": "^2.21.1",
"typescript": "^4.6.2"
},
"resolutions": {
"eslint-import-resolver-typescript": "link:.",
"prettier": "^2.3.0"
"prettier": "^2.6.0"
},
"typeCoverage": {
"atLeast": 99.28,
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import path from 'path'

import debug from 'debug'
import { sync as globSync } from 'glob'
import isGlob from 'is-glob'
import { isCore, sync, SyncOpts } from 'resolve'
import {
ConfigLoaderSuccessResult,
createMatchPath,
loadConfig,
ConfigLoaderResult,
} from 'tsconfig-paths'
import { sync as globSync } from 'glob'
import isGlob from 'is-glob'
import { isCore, sync, SyncOpts } from 'resolve'
import debug from 'debug'

const IMPORTER_NAME = 'eslint-import-resolver-typescript'

6,786 changes: 3,788 additions & 2,998 deletions yarn.lock

Large diffs are not rendered by default.