From 1fe87bc50daf0c40f649bd49046403a71f675b34 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Wed, 10 Dec 2025 22:50:34 +0100 Subject: [PATCH] Document that build must run before check The web-ui package uses tsc which requires compiled .d.ts files from dependencies to exist. closes #167 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 539201fb..82bf12b8 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,8 @@ npm run build # Build all packages npm run check # Lint, format, and type check ``` +> **Note:** `npm run check` requires `npm run build` to be run first. The web-ui package uses `tsc` which needs compiled `.d.ts` files from dependencies. + ### CI GitHub Actions runs on push to `main` and on pull requests. The workflow runs `npm run check` and `npm run test` for each package in parallel.