From 8d4959dbb3481ab7c9ad6949142159e6c2d80964 Mon Sep 17 00:00:00 2001 From: jared Date: Sun, 8 Feb 2026 18:17:27 -0500 Subject: [PATCH] updated npm run buildmac --- .claude/settings.local.json | 5 ++++- package.json | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 3924568..a86b1c6 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -3,7 +3,10 @@ "allow": [ "Bash(tree:*)", "Bash(npm install:*)", - "Bash(npm run build:*)" + "Bash(npm run build:*)", + "Bash(nginx -t:*)", + "Bash(sudo nginx:*)", + "Bash(ln -s:*)" ] } } diff --git a/package.json b/package.json index 8f58703..96057f6 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "server": "node server/index.js", "dev:all": "concurrently \"npm run dev\" \"npm run server\"", "build": "vite build", + "buildmac": "vite build && rm -rf /opt/homebrew/var/www/signsync && cp -r dist /opt/homebrew/var/www/signsync", "lint": "eslint .", "preview": "vite preview" },