chore: auto-commit task -

This commit is contained in:
MythEclipse
2026-06-02 19:04:49 +07:00
parent d1ad397be6
commit 685a6b2ea9
6 changed files with 67 additions and 1 deletions
+10
View File
@@ -8,6 +8,8 @@ tasks:
build:
command: tsc
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
@@ -16,22 +18,30 @@ tasks:
typecheck:
command: tsc --noEmit
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
lint:
command: biome check --diagnostic-level=error .
options:
runFromWorkspaceRoot: false
inputs:
- src
format:
command: biome format --write .
options:
runFromWorkspaceRoot: false
inputs:
- src
test:
command: vitest run
options:
runFromWorkspaceRoot: false
inputs:
- src
- tests
+10
View File
@@ -8,6 +8,8 @@ tasks:
build:
command: tsc
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
@@ -16,22 +18,30 @@ tasks:
typecheck:
command: tsc --noEmit
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
lint:
command: biome check --diagnostic-level=error .
options:
runFromWorkspaceRoot: false
inputs:
- src
format:
command: biome format --write .
options:
runFromWorkspaceRoot: false
inputs:
- src
test:
command: vitest run
options:
runFromWorkspaceRoot: false
inputs:
- src
- tests
+9 -1
View File
@@ -7,7 +7,9 @@ tasks:
preset: server
build:
command: tsc --noEmit && NODE_NO_WARNINGS=1 vite build
script: 'tsc --noEmit && NODE_NO_WARNINGS=1 vite build'
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
@@ -22,16 +24,22 @@ tasks:
typecheck:
command: tsc --noEmit
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
lint:
command: biome check --diagnostic-level=error src/
options:
runFromWorkspaceRoot: false
inputs:
- src
format:
command: biome format --write src/
options:
runFromWorkspaceRoot: false
inputs:
- src