From 1ac46814ad1a9225acd2433dfa7eecf320f39408 Mon Sep 17 00:00:00 2001 From: Huarch Date: Tue, 19 May 2026 10:51:31 +0800 Subject: [PATCH] chore: add push script to package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 98f140e..cbac32b 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "dev": "bun --watch src/server.ts", "build": "bun run check", "check": "bun run typecheck && bun run typecheck:opencode", + "push": "git add . && git commit -m \"chore: update\" && git push origin main", "start": "bun src/server.ts", "start:prod": "bun run check && bun src/server.ts" },