onasty/web/Taskfile.yml (view raw)
Olexandr Smirnov
Olexandr Smirnov
ss2316544@gmail.com web: button component; improve code consistency (#168)..., 10 months ago
ss2316544@gmail.com web: button component; improve code consistency (#168)..., 10 months ago
| 1 | version: "3" |
| 2 | |
| 3 | tasks: |
| 4 | install: |
| 5 | desc: install dependencies |
| 6 | cmd: bun install |
| 7 | |
| 8 | lint: |
| 9 | desc: runs elm-review |
| 10 | cmd: bunx elm-review --ignore-dirs .elm-land |
| 11 | |
| 12 | lint:fix: |
| 13 | desc: runs elm-review fix |
| 14 | cmd: bunx elm-review --ignore-dirs .elm-land --fix |
| 15 | |
| 16 | test: |
| 17 | desc: run tests |
| 18 | cmd: bunx elm-test-rs |
| 19 | |
| 20 | dev: |
| 21 | desc: runs elm-land dev server |
| 22 | cmd: bunx elm-land server |
| 23 | |
| 24 | build: |
| 25 | desc: runs elm-land build |
| 26 | cmd: bunx elm-land build |