eslint-config-terrax 0.1.2-next.f04d976 → 0.1.2
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 +9 -0
- package/package.json +52 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [0.1.2](https://gihub.com/rygent/eslint-config-terrax/compare/0.1.1...0.1.2) (2024-10-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* support next config ([f04d976](https://gihub.com/rygent/eslint-config-terrax/commits/f04d976b2bdf0a76532c31896a2f3309f7dc1b8b))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## 0.1.1 (2024-10-21)
|
|
2
11
|
|
|
3
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-terrax",
|
|
3
|
-
"version": "0.1.2
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "The ESLint shareable config",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/common.cjs",
|
|
@@ -17,6 +17,16 @@
|
|
|
17
17
|
"default": "./dist/cjs/index.cjs"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
|
+
"./browser": {
|
|
21
|
+
"import": {
|
|
22
|
+
"types": "./dist/esm/browser.d.mts",
|
|
23
|
+
"default": "./dist/esm/browser.mjs"
|
|
24
|
+
},
|
|
25
|
+
"require": {
|
|
26
|
+
"types": "./dist/cjs/browser.d.cts",
|
|
27
|
+
"default": "./dist/cjs/browser.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
20
30
|
"./common": {
|
|
21
31
|
"import": {
|
|
22
32
|
"types": "./dist/esm/common.d.mts",
|
|
@@ -27,6 +37,36 @@
|
|
|
27
37
|
"default": "./dist/cjs/common.cjs"
|
|
28
38
|
}
|
|
29
39
|
},
|
|
40
|
+
"./edge": {
|
|
41
|
+
"import": {
|
|
42
|
+
"types": "./dist/esm/edge.d.mts",
|
|
43
|
+
"default": "./dist/esm/edge.mjs"
|
|
44
|
+
},
|
|
45
|
+
"require": {
|
|
46
|
+
"types": "./dist/cjs/edge.d.cts",
|
|
47
|
+
"default": "./dist/cjs/edge.cjs"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"./jsx-a11y": {
|
|
51
|
+
"import": {
|
|
52
|
+
"types": "./dist/esm/jsx-a11y.d.mts",
|
|
53
|
+
"default": "./dist/esm/jsx-a11y.mjs"
|
|
54
|
+
},
|
|
55
|
+
"require": {
|
|
56
|
+
"types": "./dist/cjs/jsx-a11y.d.cts",
|
|
57
|
+
"default": "./dist/cjs/jsx-a11y.cjs"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"./next": {
|
|
61
|
+
"import": {
|
|
62
|
+
"types": "./dist/esm/next.d.mts",
|
|
63
|
+
"default": "./dist/esm/next.mjs"
|
|
64
|
+
},
|
|
65
|
+
"require": {
|
|
66
|
+
"types": "./dist/cjs/next.d.cts",
|
|
67
|
+
"default": "./dist/cjs/next.cjs"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
30
70
|
"./node": {
|
|
31
71
|
"import": {
|
|
32
72
|
"types": "./dist/esm/node.d.mts",
|
|
@@ -47,6 +87,16 @@
|
|
|
47
87
|
"default": "./dist/cjs/prettier.cjs"
|
|
48
88
|
}
|
|
49
89
|
},
|
|
90
|
+
"./react": {
|
|
91
|
+
"import": {
|
|
92
|
+
"types": "./dist/esm/react.d.mts",
|
|
93
|
+
"default": "./dist/esm/react.mjs"
|
|
94
|
+
},
|
|
95
|
+
"require": {
|
|
96
|
+
"types": "./dist/cjs/react.d.cts",
|
|
97
|
+
"default": "./dist/cjs/react.cjs"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
50
100
|
"./stylistic": {
|
|
51
101
|
"import": {
|
|
52
102
|
"types": "./dist/esm/stylistic.d.mts",
|
|
@@ -106,7 +156,7 @@
|
|
|
106
156
|
"eslint-plugin-react": "^7.37.1",
|
|
107
157
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
108
158
|
"globals": "^15.11.0",
|
|
109
|
-
"typescript-eslint": "^8.
|
|
159
|
+
"typescript-eslint": "^8.11.0"
|
|
110
160
|
},
|
|
111
161
|
"devDependencies": {
|
|
112
162
|
"@octokit/action": "^7.0.0",
|