From 947c776451def30f45ddfda229bcb5d83b80f739 Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Sun, 1 Oct 2023 13:16:11 +0500 Subject: [PATCH] Separate check and build commands --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 680804f..41ad362 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "scripts": { "dev": "astro dev", "start": "astro dev", - "build": "astro check && tsc --noEmit && astro build", + "check": "astro check && tsc --noEmit", + "build": "astro build", "preview": "astro preview", "astro": "astro" },