From e21a07bc433dd9202fed654cdb3aaf520eba3d73 Mon Sep 17 00:00:00 2001 From: Yann Braga Date: Wed, 5 Feb 2025 16:40:53 +0100 Subject: [PATCH] fix sandbox command --- scripts/tasks/sandbox.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/tasks/sandbox.ts b/scripts/tasks/sandbox.ts index 69c6cf29c65..f914bbe2f48 100644 --- a/scripts/tasks/sandbox.ts +++ b/scripts/tasks/sandbox.ts @@ -146,16 +146,16 @@ export const sandbox: Task = { await setImportMap(details.sandboxDir); - await runMigrations(details, options); - - await extendPreview(details, options); - const { JsPackageManagerFactory } = await import('../../code/core/src/common'); const packageManager = JsPackageManagerFactory.getPackageManager({}, details.sandboxDir); await packageManager.installDependencies(); + await runMigrations(details, options); + + await extendPreview(details, options); + logger.info(`✅ Storybook sandbox created at ${details.sandboxDir}`); }, };