2025-01-06 19:20:47 -05:00
|
|
|
# https://taskfile.dev
|
|
|
|
|
|
|
|
version: '3'
|
|
|
|
tasks:
|
|
|
|
templ-gen:
|
|
|
|
cmds:
|
|
|
|
- templ generate
|
|
|
|
silent: true
|
2025-01-07 14:16:58 -05:00
|
|
|
|
2025-01-07 15:02:40 -05:00
|
|
|
nebula:build:
|
2025-01-07 14:16:58 -05:00
|
|
|
dir: .
|
|
|
|
cmds:
|
2025-01-07 15:02:40 -05:00
|
|
|
- devbox run build
|
|
|
|
silent: true
|
|
|
|
|
|
|
|
nebula:publish:
|
|
|
|
dir: .
|
|
|
|
cmds:
|
|
|
|
- devbox run publish
|
2025-01-07 14:16:58 -05:00
|
|
|
silent: true
|
|
|
|
|
2025-01-07 15:02:40 -05:00
|
|
|
esclient:build:
|
2025-01-07 14:16:58 -05:00
|
|
|
dir: ./libs/es-client
|
|
|
|
cmds:
|
|
|
|
- devbox run build
|
|
|
|
silent: true
|
2025-01-07 15:02:40 -05:00
|
|
|
|
|
|
|
esclient:publish:
|
|
|
|
dir: ./libs/es-client
|
|
|
|
cmds:
|
2025-01-07 15:21:39 -05:00
|
|
|
- task: esclient:bump
|
2025-01-07 15:02:40 -05:00
|
|
|
- devbox run publish
|
|
|
|
silent: true
|
2025-01-07 15:21:39 -05:00
|
|
|
|
|
|
|
esclient:bump:
|
|
|
|
dir: ./libs/es-client
|
|
|
|
cmds:
|
|
|
|
- pnpm version patch
|
|
|
|
- git add package.json
|
|
|
|
- git commit -m "chore: bump version to {{.VERSION}} [skip ci]"
|
|
|
|
- git push
|
|
|
|
silent: true
|