Separate check and build commands

This commit is contained in:
Ivan R. 2023-10-01 13:16:11 +05:00
parent ae7e7e7c0c
commit 947c776451
No known key found for this signature in database
GPG key ID: 56C7BAAE859B302C

View file

@ -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"
},