From 5de84c6de78cdd363edca499b1496a199b4ddd09 Mon Sep 17 00:00:00 2001 From: juancwu Date: Mon, 6 Apr 2026 18:06:39 +0000 Subject: [PATCH] chore: add setup script in devbox.json to install tparse --- devbox.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/devbox.json b/devbox.json index a3674eb..f67e6c2 100644 --- a/devbox.json +++ b/devbox.json @@ -1,20 +1,20 @@ { - "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json", - "packages": [ - "go@1.25.5", - "templ@0.3.960", - "go-task@3.45.5", - "tailwindcss_4@4.2.1", - "nodejs@24", - "goose@latest" - ], - "shell": { - "init_hook": [ - "echo 'Welcome to devbox!' > /dev/null", - "unset DEVELOPER_DIR" - ], - "scripts": { - "test": ["echo \"Error: no test specified\" && exit 1"] - } - } + "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json", + "packages": [ + "go@1.25.5", + "templ@0.3.960", + "go-task@3.45.5", + "tailwindcss_4@4.2.1", + "nodejs@24", + "goose@latest" + ], + "shell": { + "init_hook": [ + "echo 'Welcome to devbox!' > /dev/null", + "unset DEVELOPER_DIR" + ], + "scripts": { + "setup": ["go install github.com/mfridman/tparse@latest"] + } + } }