Skip to content

Commit

Permalink
verify command
Browse files Browse the repository at this point in the history
  • Loading branch information
narthur committed Nov 20, 2024
1 parent 5637e9a commit 0deaf5c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions knowledge.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# TaskRatchet Web App

## Verifying changes

Use `pnpm verify` to check that code changes are valid.

## Task Status Behavior

- Pending tasks should have enabled controls (edit button, checkbox)
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"test": "vitest",
"unused": "pnpm dlx depcheck",
"check": "svelte-check",
"checkTs": "npm run check"
"checkTs": "npm run check",
"verify": "npm run build && npm run check && npm run lint && npm run test -- --run"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
Expand Down
2 changes: 1 addition & 1 deletion src/components/TaskModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
placeholder="Enter one or more tasks, one per line"
rows="3"
disabled={mode === 'edit'}
/>
></textarea>
</label>

<label>
Expand Down

0 comments on commit 0deaf5c

Please sign in to comment.