From c11736b6aa31ab169e03b8135a614309b89b7490 Mon Sep 17 00:00:00 2001 From: Wout Mertens Date: Wed, 21 Feb 2024 12:25:25 +0100 Subject: [PATCH] fix(build): replace workspace version in artifacts --- scripts/qwik-save-artifacts.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/qwik-save-artifacts.ts b/scripts/qwik-save-artifacts.ts index 3b950ca2d89..ad76338af7b 100644 --- a/scripts/qwik-save-artifacts.ts +++ b/scripts/qwik-save-artifacts.ts @@ -10,6 +10,8 @@ const root = join(__dirname, '..'); const srcRepoRef = 'https://github.com/BuilderIO/qwik/commit/'; (async () => { + // This replaces the `workspace:^` versions with the actual versions. + await $('npx', 'syncpack', 'fix-mismatches', '-c', '/dev/null'); const finishQwik = await prepare({ buildRepo: 'qwik-build', artifactsDir: join(root, 'packages', 'qwik', 'dist'),