Skip to content

Commit 6683854

Browse files
committed
chore(release): 3.0.0
1 parent 67c8d59 commit 6683854

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
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.
44

5+
## [3.0.0](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/compare/v2.7.1...v3.0.0) (2022-06-25)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* remove depracated directory option
11+
* use get-tsconfig to replace tsconfig-paths
12+
* bump globby, use synckit for sync fn
13+
* **deps:** bump tsconfig-paths to ^4.0.0 (#104)
14+
15+
### Features
16+
17+
* bump globby, use synckit for sync fn ([322cb29](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/commit/322cb291f9af6f7ce1d6330cf13c33ce5a70f9a7))
18+
* ignore `node_modules` folder in `projects` option glob ([#105](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/issues/105)) ([1e1b5a6](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/commit/1e1b5a6f09c71685d58aef400ac6254af892d669))
19+
* remove depracated directory option ([67c8d59](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/commit/67c8d59f51dc7fc58a0abb0838274c001c1dec6c))
20+
* use get-tsconfig to replace tsconfig-paths ([78a08e0](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/commit/78a08e082dcd5ff9e3490759f4919316e715d3ff))
21+
22+
23+
* **deps:** bump tsconfig-paths to ^4.0.0 ([#104](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/issues/104)) ([b2edbc8](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/commit/b2edbc85a6700c590d73887ce65211677305b914))
24+
525
### [2.7.1](https://github.com/alexgorbatchev/eslint-import-resolver-typescript/compare/v2.7.0...v2.7.1) (2022-04-03)
626

727

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-import-resolver-typescript",
3-
"version": "2.7.1",
3+
"version": "3.0.0",
44
"type": "module",
55
"description": "TypeScript .ts .tsx module resolver for `eslint-plugin-import`.",
66
"repository": "https://github.com/alexgorbatchev/eslint-import-resolver-typescript",
@@ -24,6 +24,7 @@
2424
"./package.json": "./package.json"
2525
},
2626
"es2015": "lib/index.es2015.mjs",
27+
"fesm2015": "lib/index.es2015.mjs",
2728
"types": "lib/index.d.ts",
2829
"files": [
2930
"lib",
@@ -87,7 +88,6 @@
8788
"eslint-import-resolver-typescript": "link:.",
8889
"prettier": "^2.7.1"
8990
},
90-
"fes2015": "lib/index.es2015.mjs",
9191
"typeCoverage": {
9292
"atLeast": 100,
9393
"cache": true,

0 commit comments

Comments
 (0)