blob: 1dfe4322c0a0a4bc6616c2fbe937ab8d785e6ac9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
'astro': patch
---
Adds the `astro check` command
This adds a new command, `astro check` which runs diagnostics on a project. The same diagnostics run within the Astro VSCode plugin! Just run:
```shell
astro check
```
Which works a lot like `tsc` and will give you error messages, if any were found. We recommend adding this to your CI setup to prevent errors from being merged.
|