Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
merge_group:

jobs:
typecheck:
check:
runs-on: ubuntu-latest
concurrency:
group: typecheck-${{ github.workflow }}-#${{ github.event.pull_request.number || github.head_ref || github.ref }}
group: check-${{ github.workflow }}-#${{ github.event.pull_request.number || github.head_ref || github.ref }}
cancel-in-progress: true
steps:
- name: Checkout repository
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eggjs/oxlint-config": "^1.0.0",
"@eggjs/tsconfig": "^2.0.0",
"@types/busboy": "^1.5.4",
"@types/mime-types": "^2.1.4",
Expand All @@ -105,12 +104,12 @@
"tshy": "^3.3.2",
"tshy-after": "^1.4.1",
"typescript": "^5.9.3",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
"vite-plus": "^0.1.1",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.1"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.1",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.1"
},
"lint-staged": {
"*": "vp check --fix"
Expand All @@ -127,8 +126,8 @@
"packageManager": "pnpm@10.30.3",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.1",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.1"
},
"peerDependencyRules": {
"allowAny": [
Expand Down
98 changes: 45 additions & 53 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ export default defineConfig({
env: {
node: true,
},
// FIXME: wait for vite-plus to fix lint extends path resolution
extends: ['./node_modules/@eggjs/oxlint-config/.oxlintrc.json'],
categories: {
correctness: 'allow',
suspicious: 'allow',
Expand Down
Loading