Skip to content

Commit 14ccc37

Browse files
committed
chore: use a cool new tool 👀
1 parent 27c62c6 commit 14ccc37

4 files changed

Lines changed: 394 additions & 234 deletions

File tree

‎package.json‎

Lines changed: 10 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
"scripts": {
1212
"build": "nuxt build",
1313
"dev": "nuxt dev",
14-
"lint": "oxlint && oxfmt --check .",
15-
"lint:fix": "oxlint --fix && oxfmt .",
14+
"lint": "vite lint && vite fmt --check",
15+
"lint:fix": "vite lint --fix && vite fmt",
1616
"generate": "nuxt generate",
1717
"npmx-connector": "pnpm --filter npmx-connector dev",
1818
"preview": "nuxt preview",
1919
"postinstall": "nuxt prepare && simple-git-hooks",
20-
"test": "vitest",
20+
"test": "vite test",
2121
"test:browser": "playwright test",
2222
"test:browser:ui": "playwright test --ui",
2323
"test:browser:update": "playwright test --update-snapshots",
24-
"test:nuxt": "vitest --project nuxt",
24+
"test:nuxt": "vite test --project nuxt",
2525
"test:types": "nuxt prepare && vue-tsc -b --noEmit && pnpm --filter npmx-connector test:types",
26-
"test:unit": "vitest --project unit"
26+
"test:unit": "vite test --project unit"
2727
},
2828
"dependencies": {
2929
"@iconify-json/simple-icons": "^1.2.67",
@@ -65,46 +65,31 @@
6565
"@vite-pwa/nuxt": "1.1.0",
6666
"@vitest/browser-playwright": "^4.0.18",
6767
"@vitest/coverage-v8": "^4.0.18",
68+
"@voidzero-dev/vite-plus-core": "latest",
6869
"@vue/test-utils": "2.4.6",
6970
"axe-core": "^4.11.1",
7071
"happy-dom": "20.3.5",
7172
"lint-staged": "16.2.7",
7273
"marked": "17.0.1",
73-
"oxfmt": "0.26.0",
74-
"oxlint": "^1.41.0",
7574
"playwright-core": "1.57.0",
7675
"simple-git-hooks": "2.13.1",
7776
"spdx-license-list": "^6.11.0",
7877
"std-env": "3.10.0",
7978
"typescript": "5.9.3",
8079
"unocss": "66.6.0",
81-
"vitest": "^4.0.18",
80+
"vite-plus": "latest",
81+
"vitest": "npm:@voidzero-dev/vite-plus-test@latest",
8282
"vue-tsc": "3.2.2"
8383
},
84-
"resolutions": {
85-
"vite": "^8.0.0-beta.10"
86-
},
87-
"pnpm": {
88-
"overrides": {
89-
"sharp": "0.34.5"
90-
},
91-
"packageExtensions": {
92-
"@nuxt/scripts": {
93-
"dependencies": {
94-
"estree-walker": "^3.0.3"
95-
}
96-
}
97-
}
98-
},
9984
"simple-git-hooks": {
10085
"pre-commit": "npx lint-staged"
10186
},
10287
"lint-staged": {
10388
"*.{js,ts,mjs,cjs,vue}": [
104-
"oxlint --fix"
89+
"vite lint --fix"
10590
],
10691
"*.{js,ts,mjs,cjs,vue,json,md,html,css}": [
107-
"oxfmt"
92+
"vite fmt"
10893
]
10994
},
11095
"packageManager": "pnpm@10.28.1"

0 commit comments

Comments
 (0)