From cbd5ec3a50bde8350fa65c2424c7b13929875066 Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Mon, 9 Feb 2026 18:33:33 -0600 Subject: [PATCH] feat(build): integrate Panda CSS with codegen and CI env --- Dockerfile | 1 + package.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9bfeb75..0b42f4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ WORKDIR /app COPY . . ENV NODE_ENV=production +ENV CI=true RUN bun install --frozen-lockfile --production RUN bun run build diff --git a/package.json b/package.json index 51fcc19..ee01a14 100644 --- a/package.json +++ b/package.json @@ -7,19 +7,19 @@ "build": "astro build", "preview": "astro preview", "astro": "astro", - "prepare": "bun .husky/install.mts" + "prepare": "panda codegen && bun .husky/install.mts" }, "dependencies": { "@fontsource-variable/roboto": "^5.2.9", "@fontsource/orbitron": "^5.2.8", "@srjuggernaut-dev/srjuggernaut-panda-preset": "^0.0.17", + "@pandacss/dev": "^1.8.1", "astro": "^5.17.1" }, "devDependencies": { "@biomejs/biome": "2.3.13", "@commitlint/cli": "^20.4.1", "@commitlint/config-conventional": "^20.4.1", - "@pandacss/dev": "^1.8.1", "husky": "^9.1.7" } }