Skip to content

Commit

Permalink
chore(tasks): consistent task naming
Browse files Browse the repository at this point in the history
  • Loading branch information
rektdeckard committed Sep 15, 2024
1 parent 144d7c0 commit 75c284b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ tasks:
install:
desc: "Bootstrap application for local development"
deps:
- install_ui
- install_agent
- install_frontend
- install_sandbox

install_sandbox:
desc: "Bootstrap application for sandbox environment"
deps:
- install_agent

install_ui:
install_frontend:
dir: "frontend"
interactive: true
cmds:
- "pnpm install"

install_agent:
install_sandbox:
dir: "agent"
interactive: true
cmds:
Expand All @@ -47,16 +47,16 @@ tasks:
dev:
interactive: true
deps:
- dev_ui
- dev_agent
- dev_frontend
- dev_sandbox

dev_ui:
dev_frontend:
dir: "frontend"
interactive: true
cmds:
- "pnpm dev"

dev_agent:
dev_sandbox:
dir: "agent"
interactive: true
cmds:
Expand Down

0 comments on commit 75c284b

Please sign in to comment.