@scayle/eslint-auto-explicit-import 0.2.0 → 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 +22 -0
- package/dist/module.json +3 -3
- package/dist/module.mjs +2 -2
- package/package.json +12 -14
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,23 @@
|
|
|
1
1
|
# @scayle/eslint-auto-explicit-import
|
|
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
|
+
|
|
11
|
+
## 0.2.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- This is an internal change only. The packages now use the PNPM catalog feature to ensure dependencies use the identical version across packages.
|
|
16
|
+
|
|
17
|
+
## 0.2.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- Initial release of the `@scayle/eslint-auto-explicit-import` package.
|
|
22
|
+
|
|
23
|
+
This package is based on the [eslint-auto-explicit-import](https://github.com/antfu/nuxt-eslint-auto-explicit-import) package and used for automatically inserting missing imports from the unimport registry.
|
package/dist/module.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storefront-eslint-auto-explicit-import",
|
|
3
3
|
"configKey": "storefront-eslint-auto-explicit-import",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"builder": {
|
|
6
|
-
"@nuxt/module-builder": "1.0.
|
|
7
|
-
"unbuild": "3.
|
|
6
|
+
"@nuxt/module-builder": "1.0.2",
|
|
7
|
+
"unbuild": "3.6.1"
|
|
8
8
|
}
|
|
9
9
|
}
|
package/dist/module.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineNuxtModule, createResolver, logger } from '@nuxt/kit';
|
|
2
2
|
|
|
3
|
-
const module = defineNuxtModule({
|
|
3
|
+
const module$1 = defineNuxtModule({
|
|
4
4
|
meta: {
|
|
5
5
|
name: "storefront-eslint-auto-explicit-import"
|
|
6
6
|
},
|
|
@@ -43,4 +43,4 @@ const module = defineNuxtModule({
|
|
|
43
43
|
}
|
|
44
44
|
});
|
|
45
45
|
|
|
46
|
-
export { module as default };
|
|
46
|
+
export { module$1 as default };
|
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",
|
|
@@ -31,29 +31,27 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"debug": "4.4.
|
|
34
|
+
"debug": "4.4.3",
|
|
35
35
|
"pathe": "2.0.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@nuxt/
|
|
39
|
-
"@
|
|
40
|
-
"@typescript-eslint/
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
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",
|
|
44
|
+
"typescript": "5.9.3",
|
|
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"
|
|
53
54
|
},
|
|
54
|
-
"volta": {
|
|
55
|
-
"node": "22.17.0"
|
|
56
|
-
},
|
|
57
55
|
"scripts": {
|
|
58
56
|
"build": "nuxt-module-build build",
|
|
59
57
|
"lint": "eslint .",
|