From b4921400b48f6ad22ef84b9a0c041fc734aa71c3 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Sun, 4 Jan 2026 10:32:14 +0100 Subject: [PATCH] chore(test-project): Switch to `yarn clean` --- tasks/test-project/rebuild-test-project-fixture-esm.ts | 6 +++--- tasks/test-project/rebuild-test-project-fixture.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/test-project/rebuild-test-project-fixture-esm.ts b/tasks/test-project/rebuild-test-project-fixture-esm.ts index a413ba0609..f3e5bf76b5 100755 --- a/tasks/test-project/rebuild-test-project-fixture-esm.ts +++ b/tasks/test-project/rebuild-test-project-fixture-esm.ts @@ -314,14 +314,14 @@ async function runCommand() { }) // TODO: See if this is needed now with tarsync. Maybe just keep the - // build:clean part (and/or combine it with the tarsync) + // clean part (and/or combine it with the tarsync) await tuiTask({ step: 1, title: '[link] Building Cedar framework', - content: 'yarn build:clean && yarn build', + content: 'yarn clean && yarn build', task: async () => { return exec( - 'yarn build:clean && yarn build', + 'yarn clean && yarn build', [], getExecaOptions(RW_FRAMEWORK_PATH), ) diff --git a/tasks/test-project/rebuild-test-project-fixture.ts b/tasks/test-project/rebuild-test-project-fixture.ts index 32c91917a3..0610a10db8 100755 --- a/tasks/test-project/rebuild-test-project-fixture.ts +++ b/tasks/test-project/rebuild-test-project-fixture.ts @@ -311,14 +311,14 @@ async function runCommand() { }) // TODO: See if this is needed now with tarsync. Maybe just keep the - // build:clean part (and/or combine it with the tarsync) + // clean part (and/or combine it with the tarsync) await tuiTask({ step: 1, title: '[link] Building Cedar framework', - content: 'yarn build:clean && yarn build', + content: 'yarn clean && yarn build', task: async () => { return exec( - 'yarn build:clean && yarn build', + 'yarn clean && yarn build', [], getExecaOptions(RW_FRAMEWORK_PATH), )