We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a247607 commit 06ce529Copy full SHA for 06ce529
docker/server/console/setup
@@ -7,7 +7,10 @@ JUNO_REPO="$JUNO_MAIN_DIR"
7
if [ "$CLI_BUILD" == "skylab" ]; then
8
# npm error signal SIGILL esbuild because package-lock contains a reference to esbuild arm
9
rm "${JUNO_REPO}"/package-lock.json
10
- npm --prefix "${JUNO_REPO}" install
+
11
+ # .svelte-kit/tsconfig.json not found - npm run prepare is not run because ignore-scripts=true is defined
12
+ # that's why we run a custom install script that do npm i && npm run prepare
13
+ npm --prefix "${JUNO_REPO}" bootstrap:install
14
15
# we use npm run preview to run the console that's why we need to build the application
16
npm --prefix "${JUNO_REPO}" run build:skylab
0 commit comments