From f66b9390a11b5113b4b00a9eba172cd5052749ac Mon Sep 17 00:00:00 2001 From: dominikg Date: Thu, 25 May 2023 17:45:58 +0200 Subject: [PATCH] chore: add missing overrides to sveltekit --- builds/sveltekit.ts | 4 ++++ tests/sveltekit.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/builds/sveltekit.ts b/builds/sveltekit.ts index 5599d5e3..7d6e87d5 100644 --- a/builds/sveltekit.ts +++ b/builds/sveltekit.ts @@ -6,6 +6,10 @@ export async function build(options: RunOptions) { ...options, repo: 'sveltejs/kit', branch: 'master', + overrides: { + '@sveltejs/vite-plugin-svelte': true, + '@sveltejs/vite-plugin-svelte-inspector': true, + }, }) } diff --git a/tests/sveltekit.ts b/tests/sveltekit.ts index 323ea437..3bf431a5 100755 --- a/tests/sveltekit.ts +++ b/tests/sveltekit.ts @@ -8,6 +8,7 @@ export async function test(options: RunOptions) { branch: 'master', overrides: { '@sveltejs/vite-plugin-svelte': true, + '@sveltejs/vite-plugin-svelte-inspector': true, }, beforeTest: 'pnpm playwright install', test: ['lint', 'check', 'test:vite-ecosystem-ci'], // TODO do we want another set of tests for svelte?