Skip to content

Commit d73a86d

Browse files
authored
feat: QoL update (#33)
1 parent 863964d commit d73a86d

File tree

16 files changed

+904
-608
lines changed

16 files changed

+904
-608
lines changed

bin/cli.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env node
2+
3+
import { main } from '../dist/cli.mjs'
4+
5+
main()

build.config.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import { defineBuildConfig } from 'unbuild'
22

3-
export default defineBuildConfig({
4-
rollup: { inlineDependencies: ['valibot'] },
5-
})
3+
export default defineBuildConfig([
4+
{
5+
rollup: { inlineDependencies: ['valibot'] },
6+
},
7+
{
8+
entries: ['src/cli.ts'],
9+
},
10+
])

package.json

Lines changed: 29 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
"version": "4.0.0",
44
"description": "eslint config for vue.js projects",
55
"type": "module",
6+
"bin": {
7+
"eslint-config-vuetify": "bin/cli.mjs"
8+
},
69
"scripts": {
710
"typegen": "tsx scripts/typegen.ts",
811
"build": "node --run typegen && unbuild",
912
"prepack": "node --run build",
1013
"stub": "unbuild --stub",
14+
"lint": "eslint",
15+
"lint:fix": "eslint --fix",
1116
"test": "vitest run",
1217
"dev": "vitest",
1318
"dev:prepare": "node --run typegen && node --run stub"
@@ -44,42 +49,44 @@
4449
"eslint-plugin-vuejs-accessibility": "^2.0.0"
4550
},
4651
"dependencies": {
47-
"@clack/prompts": "^0.10.1",
52+
"@clack/prompts": "^0.11.0",
4853
"@eslint/eslintrc": "^3.3.1",
49-
"@eslint/js": "^9.25.1",
50-
"@stylistic/eslint-plugin": "^4.2.0",
51-
"@typescript-eslint/parser": "^8.31.0",
54+
"@eslint/js": "^9.28.0",
55+
"@stylistic/eslint-plugin": "^4.4.0",
56+
"@typescript-eslint/parser": "^8.33.0",
5257
"eslint-config-flat-gitignore": "^2.1.0",
53-
"eslint-flat-config-utils": "^2.0.1",
58+
"eslint-flat-config-utils": "^2.1.0",
5459
"eslint-plugin-antfu": "^3.1.1",
55-
"eslint-plugin-import-x": "^4.10.6",
56-
"eslint-plugin-jsonc": "^2.20.0",
57-
"eslint-plugin-perfectionist": "^4.12.1",
60+
"eslint-plugin-import-x": "^4.15.0",
61+
"eslint-plugin-jsonc": "^2.20.1",
62+
"eslint-plugin-perfectionist": "^4.13.0",
5863
"eslint-plugin-pnpm": "^0.3.1",
5964
"eslint-plugin-regexp": "^2.7.0",
60-
"eslint-plugin-unicorn": "^58.0.0",
61-
"eslint-plugin-vue": "^10.0.0",
62-
"eslint-typegen": "^2.1.0",
65+
"eslint-plugin-unicorn": "^59.0.1",
66+
"eslint-plugin-vue": "^10.1.0",
67+
"eslint-typegen": "^2.2.0",
6368
"exsolve": "^1.0.5",
64-
"globals": "^16.0.0",
69+
"globals": "^16.2.0",
6570
"jsonc-eslint-parser": "^2.4.0",
6671
"kolorist": "^1.8.0",
6772
"local-pkg": "^1.1.1",
6873
"nypm": "^0.6.0",
69-
"package-manager-detector": "^1.2.0",
70-
"typescript-eslint": "^8.31.0",
74+
"package-manager-detector": "^1.3.0",
75+
"tinyexec": "^1.0.1",
76+
"typescript-eslint": "^8.33.0",
7177
"vue-eslint-parser": "^10.1.3",
7278
"yaml-eslint-parser": "^1.3.0"
7379
},
7480
"devDependencies": {
75-
"@types/node": "^22.13.17",
76-
"eslint-config-vuetify": "file:../eslint-config-vuetify",
77-
"tsx": "^4.19.3",
78-
"typescript": "^5.8.2",
81+
"@types/node": "^22.15.29",
82+
"eslint": "^9.28.0",
83+
"eslint-config-vuetify": "file:",
84+
"tsx": "^4.19.4",
85+
"typescript": "^5.8.3",
7986
"unbuild": "^3.5.0",
80-
"valibot": "^1.0.0",
81-
"vitest": "^3.1.2",
82-
"vue": "^3.5.13"
87+
"valibot": "^1.1.0",
88+
"vitest": "^3.1.4",
89+
"vue": "^3.5.16"
8390
},
84-
"packageManager": "pnpm@10.7.1"
91+
"packageManager": "pnpm@10.11.0"
8592
}

0 commit comments

Comments
 (0)