From 805cb281853edff06adaf4c62b7ae256a00bea3f Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Fri, 13 Mar 2026 01:35:14 -0500 Subject: [PATCH] feat: add scripts to clear and run from scratch --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 46f8ee3..ee46cda 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,10 @@ }, "scripts": { "dev": "astro dev", + "full-dev": "rm -rf dist node_modules .astro && bun install && astro build && astro dev", "build": "astro build", "preview": "astro preview", + "full-preview": "rm -rf dist node_modules .astro && bun install && astro build && astro preview", "astro": "astro", "format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\"", "lint": "eslint \"src/**/*.{js,ts,jsx,tsx,astro}\"",