@commencis/eslint-config 1.5.9 → 1.7.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 +23 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @commencis/eslint-config
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- chore(deps): update dependency eslint-plugin-vue to v10 ([#266](https://github.com/Commencis/js-toolkit/pull/266))
|
|
8
|
+
|
|
9
|
+
breaking-change: new minimum requirements for eslint and node versions
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- chore(deps): update dependency @next/eslint-plugin-next to v15.2.1 ([#261](https://github.com/Commencis/js-toolkit/pull/261))
|
|
14
|
+
|
|
15
|
+
- chore(deps): update eslint monorepo to v9.22.0 ([#267](https://github.com/Commencis/js-toolkit/pull/267))
|
|
16
|
+
|
|
17
|
+
- chore(deps): update eslint-config-prettier to v10 ([#268](https://github.com/Commencis/js-toolkit/pull/268))
|
|
18
|
+
|
|
19
|
+
## 1.6.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- chore(deps): update typescript-eslint monorepo to v8.26.0 ([#256](https://github.com/Commencis/js-toolkit/pull/256))
|
|
24
|
+
feat: add support for typescript 5.8
|
|
25
|
+
|
|
3
26
|
## 1.5.9
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commencis/eslint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Commencis ESLint config",
|
|
5
5
|
"author": "Commencis WEB Team",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -58,24 +58,24 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@eslint/js": "9.
|
|
62
|
-
"@next/eslint-plugin-next": "15.2.
|
|
63
|
-
"@typescript-eslint/utils": "8.
|
|
64
|
-
"eslint-config-prettier": "10.
|
|
61
|
+
"@eslint/js": "9.22.0",
|
|
62
|
+
"@next/eslint-plugin-next": "15.2.1",
|
|
63
|
+
"@typescript-eslint/utils": "8.26.0",
|
|
64
|
+
"eslint-config-prettier": "10.1.1",
|
|
65
65
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
66
66
|
"eslint-plugin-prettier": "5.2.3",
|
|
67
67
|
"eslint-plugin-react": "7.37.4",
|
|
68
68
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
69
69
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
70
|
-
"eslint-plugin-vue": "
|
|
70
|
+
"eslint-plugin-vue": "10.0.0",
|
|
71
71
|
"globals": "16.0.0",
|
|
72
|
-
"typescript-eslint": "8.
|
|
72
|
+
"typescript-eslint": "8.26.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@commencis/ts-config": "0.0.2",
|
|
76
|
-
"eslint": "9.
|
|
76
|
+
"eslint": "9.22.0",
|
|
77
77
|
"tsup": "8.4.0",
|
|
78
|
-
"typescript": "5.
|
|
78
|
+
"typescript": "5.8.2"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"eslint": ">= 9.7"
|