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.7.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.7.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Apr 3, 2022

  1. Copy the full SHA
    664465f View commit details
  2. chore(release): 2.7.1

    JounQin committed Apr 3, 2022
    Copy the full SHA
    1bc9f42 View commit details
Showing with 2,071 additions and 1,234 deletions.
  1. +7 −0 CHANGELOG.md
  2. +12 −9 package.json
  3. +2,052 −1,225 yarn.lock
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.7.1](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/compare/v2.7.0...v2.7.1) (2022-04-03)


### Bug Fixes

* per package.json warning ([#101](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/issues/101)) ([664465f](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/commit/664465fa75e6b197f990cd6e89ab5f086bb8d4f2))

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


21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-import-resolver-typescript",
"version": "2.7.0",
"version": "2.7.1",
"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>",
@@ -14,9 +14,12 @@
"main": "lib/index.cjs",
"module": "lib/index.es2015.mjs",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.es2015.mjs",
"types": "./lib/index.d.ts"
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.es2015.mjs",
"types": "./lib/index.d.ts"
},
"./package.json": "./package.json"
},
"es2015": "lib/index.es2015.mjs",
"types": "lib/index.d.ts",
@@ -63,23 +66,23 @@
"tsconfig-paths": "^3.14.1"
},
"devDependencies": {
"@1stg/lib-config": "^5.1.1",
"@1stg/lib-config": "^5.4.0",
"@types/debug": "^4.1.7",
"@types/glob": "^7.2.0",
"@types/is-glob": "^4.0.2",
"@types/node": "^17.0.22",
"@types/node": "^17.0.23",
"@types/resolve": "^1.20.1",
"@types/unist": "^2.0.6",
"dummy.js": "link:dummy.js",
"eslint-import-resolver-typescript": "link:.",
"react": "^17.0.2",
"react": "^18.0.0",
"standard-version": "^9.3.2",
"type-coverage": "^2.21.1",
"typescript": "^4.6.2"
"typescript": "^4.6.3"
},
"resolutions": {
"eslint-import-resolver-typescript": "link:.",
"prettier": "^2.6.0"
"prettier": "^2.6.2"
},
"typeCoverage": {
"atLeast": 99.28,
Loading