Separate check and build commands
This commit is contained in:
parent
ae7e7e7c0c
commit
947c776451
1 changed files with 2 additions and 1 deletions
|
@ -5,7 +5,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
"build": "astro check && tsc --noEmit && astro build",
|
"check": "astro check && tsc --noEmit",
|
||||||
|
"build": "astro build",
|
||||||
"preview": "astro preview",
|
"preview": "astro preview",
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue