From c8a77934f2ac73bf4f8984c052af85d5e27113ee Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Tue, 8 Aug 2023 13:26:34 +0500 Subject: [PATCH] ci: use themebuilder scope during bootstrap --- .github/workflows/theme-builder.publish.yml | 2 +- scripts/bootstrap.mjs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/theme-builder.publish.yml b/.github/workflows/theme-builder.publish.yml index 8915f90e6..e86947ecb 100644 --- a/.github/workflows/theme-builder.publish.yml +++ b/.github/workflows/theme-builder.publish.yml @@ -16,7 +16,7 @@ jobs: - name: Install packages run: | npm ci --ignore-scripts --prefer-offline --no-audit - npm run bootstrap -- --scope=web + npm run bootstrap -- --scope=themebuilder - name: Setup environment run: | diff --git a/scripts/bootstrap.mjs b/scripts/bootstrap.mjs index 2a616bee6..3774f0911 100644 --- a/scripts/bootstrap.mjs +++ b/scripts/bootstrap.mjs @@ -35,7 +35,8 @@ const scopes = { desktop: "apps/desktop", core: "packages/core", editor: "packages/editor", - themes: "servers/themes" + themes: "servers/themes", + themebuilder: "apps/theme-builder" }; if (args.scope && !scopes[args.scope])