From e4055001ae6fb4133d20bd0ae0f2f3b994b006a7 Mon Sep 17 00:00:00 2001 From: Quentin Deroubaix <139884126+quentinderoubaix@users.noreply.github.com> Date: Tue, 17 Sep 2024 14:17:24 +0200 Subject: [PATCH] fix: wireit dependencies for svelte bootstrap / headless (#925) --- package.json | 3 +-- svelte/bootstrap/package.json | 6 +++--- svelte/headless/package.json | 6 +++--- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index f68519e50d..c5a591c2d1 100644 --- a/package.json +++ b/package.json @@ -203,8 +203,7 @@ "command": "eslint --cache --color", "dependencies": [ "prepare", - "./eslint-plugin:build", - "./svelte/bootstrap:build" + "./eslint-plugin:build" ] } }, diff --git a/svelte/bootstrap/package.json b/svelte/bootstrap/package.json index 923cb1bc54..310be96003 100644 --- a/svelte/bootstrap/package.json +++ b/svelte/bootstrap/package.json @@ -93,7 +93,7 @@ "svelte.config.js", "src/**", "!src/generated/**", - "tsconfig.json", + "tsconfig.build.json", "../tsconfig.json", "../../tsconfig.json" ], @@ -125,7 +125,7 @@ ] }, "check": { - "command": "svelte-check --fail-on-warnings --output human-verbose", + "command": "svelte-check --fail-on-warnings --output human-verbose --tsconfig tsconfig.build.json", "dependencies": [ "generate:exports", "generate:component-types", @@ -134,7 +134,7 @@ ], "files": [ "src/**", - "tsconfig.json", + "tsconfig.build.json", "../tsconfig.json", "../../tsconfig.json" ], diff --git a/svelte/headless/package.json b/svelte/headless/package.json index 5d2c7e78d4..4b081827c0 100644 --- a/svelte/headless/package.json +++ b/svelte/headless/package.json @@ -75,7 +75,7 @@ "files": [ "src/**", "!src/generated/**", - "tsconfig.json", + "tsconfig.build.json", "../tsconfig.json", "../../tsconfig.json" ], @@ -108,14 +108,14 @@ ] }, "check": { - "command": "svelte-check --fail-on-warnings --output human-verbose", + "command": "svelte-check --fail-on-warnings --output human-verbose --tsconfig tsconfig.build.json", "dependencies": [ "generate:exports", "../../core:build" ], "files": [ "src/**", - "tsconfig.json", + "tsconfig.build.json", "../tsconfig.json", "../../tsconfig.json" ],