You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then update your `package.json` scripts to run `svelte-check-daemon start`in the background (usually alongside your dev server) and `svelte-check-daemon check` to get results:
15
+
Then update your `package.json` scripts to run `svelte-check-daemon start` alongside your dev server and `svelte-check-daemon check` to get results:
16
16
17
17
```json
18
18
{
19
-
// ...
20
19
"scripts": {
21
-
"dev": "svelte-check-daemon start --tsconfig tsconfig.json & vite dev",
This uses [concurrently](https://www.npmjs.com/package/concurrently) to run both processes and ensure the daemon is properly terminated when you stop the dev server.
27
+
27
28
If the daemon isn't running, `svelte-check-daemon check` will just run `svelte-check`, which is a fallback in CI or if you've forgotten to run the daemon.
0 commit comments