@scayle/eslint-auto-explicit-import 0.2.1 → 0.3.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 +8 -0
- package/dist/module.json +1 -1
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @scayle/eslint-auto-explicit-import
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- All packages now require Node.js 22 or later, in line with the current Node.js LTS release schedule. See the [Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule) for details.
|
|
8
|
+
|
|
9
|
+
If your project is still running an older Node.js version, now is a good time to upgrade to Node.js 22 at minimum, or ideally Node.js 24, for the latest security patches and stability improvements.
|
|
10
|
+
|
|
3
11
|
## 0.2.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/eslint-auto-explicit-import",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Automatically add explicit imports to ESLint",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,18 +35,19 @@
|
|
|
35
35
|
"pathe": "2.0.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@nuxt/
|
|
39
|
-
"@
|
|
40
|
-
"@typescript-eslint/
|
|
41
|
-
"
|
|
42
|
-
"
|
|
38
|
+
"@nuxt/eslint": "1.14.0",
|
|
39
|
+
"@nuxt/kit": "^3.20.2",
|
|
40
|
+
"@typescript-eslint/scope-manager": "8.58.0",
|
|
41
|
+
"@typescript-eslint/utils": "8.58.0",
|
|
42
|
+
"dprint": "0.53.2",
|
|
43
|
+
"eslint": "10.2.0",
|
|
43
44
|
"typescript": "5.9.3",
|
|
44
45
|
"unbuild": "3.6.1",
|
|
45
46
|
"unimport": "0.1.2",
|
|
46
|
-
"@scayle/eslint-config-storefront": "4.
|
|
47
|
+
"@scayle/eslint-config-storefront": "4.8.0"
|
|
47
48
|
},
|
|
48
49
|
"engines": {
|
|
49
|
-
"node": ">=
|
|
50
|
+
"node": ">= 22.0.0"
|
|
50
51
|
},
|
|
51
52
|
"peerDependencies": {
|
|
52
53
|
"@nuxt/kit": ">=3.13.0"
|