From 1a49423bebe46be85ec098fb7a0210ed59e556c1 Mon Sep 17 00:00:00 2001 From: itsMapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:41:06 -0500 Subject: [PATCH] run astro sync before typecheck --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b9b8c6b..07898d3 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "lint": "run-p --print-label --continue-on-error --silent lint:*", "lint:prettier": "prettier --cache --check .", "lint:eslint": "eslint . --report-unused-disable-directives", - "lint:tsc": "pnpm -r --parallel --no-bail exec tsc -b", + "lint:tsc": "pnpm --filter website exec astro sync && pnpm -r --parallel --no-bail exec tsc -b", "lint:tsc-root": "tsc -b", "format": "run-s --continue-on-error format:*", "format:eslint": "eslint . --report-unused-disable-directives --fix",