From eac882e1873c6889dbe76414297a2b5eb6c76b5a Mon Sep 17 00:00:00 2001 From: Alex Supkay Date: Thu, 13 Feb 2025 01:49:18 -0500 Subject: [PATCH 1/2] Add check-types to root package.json --- examples/basic/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/basic/package.json b/examples/basic/package.json index cc2a8b47b5384..ede7d1d43ed37 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -5,7 +5,8 @@ "build": "turbo build", "dev": "turbo dev", "lint": "turbo lint", - "format": "prettier --write \"**/*.{ts,tsx,md}\"" + "format": "prettier --write \"**/*.{ts,tsx,md}\"", + "check-types": "turbo check-types" }, "devDependencies": { "prettier": "^3.5.0", From d07b35dfc5cd109c5a2b14e4e85b7a2ac597a731 Mon Sep 17 00:00:00 2001 From: Alex Supkay Date: Thu, 13 Feb 2025 01:53:03 -0500 Subject: [PATCH 2/2] Add check-types to root package.json --- examples/with-svelte/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/with-svelte/package.json b/examples/with-svelte/package.json index 10e45820270f6..643567a9c0c6f 100644 --- a/examples/with-svelte/package.json +++ b/examples/with-svelte/package.json @@ -5,7 +5,8 @@ "build": "turbo run build", "dev": "turbo run dev", "lint": "turbo run lint", - "format": "prettier --write ." + "format": "prettier --write .", + "check-types": "turbo run check-types" }, "devDependencies": { "prettier": "^3.5.0",