@ornikar/eslint-config-typescript-react 18.13.0 → 19.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,40 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [19.2.0](https://github.com/ornikar/eslint-configs/compare/v19.1.0...v19.2.0) (2022-08-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ornikar/eslint-config-typescript-react
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [19.1.0](https://github.com/ornikar/eslint-configs/compare/v19.0.0...v19.1.0) (2022-07-22)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @ornikar/eslint-config-typescript-react
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [19.0.0](https://github.com/ornikar/eslint-configs/compare/v18.13.0...v19.0.0) (2022-07-19)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### chore
|
|
26
|
+
|
|
27
|
+
* **deps:** update dependency eslint-plugin-unicorn to v43 ([#344](https://github.com/ornikar/eslint-configs/issues/344)) ([dc66d53](https://github.com/ornikar/eslint-configs/commit/dc66d533caf6d79b5e332b8ce8e2f8c37dec962d))
|
|
28
|
+
* **deps:** update frontend orb to v5 ([#340](https://github.com/ornikar/eslint-configs/issues/340)) ([82a0a41](https://github.com/ornikar/eslint-configs/commit/82a0a41861001c2a3bc2927e21cc75c85094814e))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### BREAKING CHANGES
|
|
32
|
+
|
|
33
|
+
* **deps:** requires eslint 8.18
|
|
34
|
+
* **deps:** requires node 16
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
6
40
|
# [18.13.0](https://github.com/ornikar/eslint-configs/compare/v18.12.0...v18.13.0) (2022-07-01)
|
|
7
41
|
|
|
8
42
|
**Note:** Version bump only for package @ornikar/eslint-config-typescript-react
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/eslint-config-typescript-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.2.0",
|
|
4
4
|
"description": "eslint typescript react config files",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,24 +10,24 @@
|
|
|
10
10
|
"main": "index.js",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"engines": {
|
|
13
|
-
"node": ">=
|
|
13
|
+
"node": ">= 16.15.1"
|
|
14
14
|
},
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@ornikar/eslint-config-react": "^
|
|
20
|
-
"@ornikar/eslint-config-typescript": "^
|
|
19
|
+
"@ornikar/eslint-config-react": "^19.2.0",
|
|
20
|
+
"@ornikar/eslint-config-typescript": "^19.2.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"eslint": "^8.
|
|
23
|
+
"eslint": "^8.18.0",
|
|
24
24
|
"prettier": "^2.2.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@types/react": "17.0.
|
|
28
|
-
"eslint": "8.
|
|
27
|
+
"@types/react": "17.0.48",
|
|
28
|
+
"eslint": "8.22.0",
|
|
29
29
|
"react": "17.0.2",
|
|
30
|
-
"type-fest": "2.
|
|
30
|
+
"type-fest": "2.18.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "1762b1540338849141f2dd98ed06e900051a1c79"
|
|
33
33
|
}
|