mirror of https://github.com/penpot/penpot.git
🐛 Add missing node depes install on render-wasm
This commit is contained in:
parent
77ef8e6fe6
commit
3f6e44316e
|
|
@ -20,7 +20,7 @@ echo $PATH
|
|||
set -ex
|
||||
|
||||
corepack enable;
|
||||
corepack install || exit 1;
|
||||
corepack install;
|
||||
yarn install || exit 1;
|
||||
|
||||
rm -rf resources/public;
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
EMSDK_QUIET=1 . /opt/emsdk/emsdk_env.sh
|
||||
|
||||
set -x
|
||||
|
||||
_BUILD_NAME="${_BUILD_NAME:-render_wasm}"
|
||||
|
||||
_SCRIPT_DIR=$(dirname $0);
|
||||
|
|
@ -11,7 +9,11 @@ pushd $_SCRIPT_DIR;
|
|||
|
||||
. ./_build_env
|
||||
|
||||
set -x;
|
||||
set -ex;
|
||||
|
||||
corepack enable;
|
||||
corepack install;
|
||||
yarn install;
|
||||
|
||||
build;
|
||||
copy_artifacts "../frontend/resources/public/js";
|
||||
|
|
|
|||
Loading…
Reference in New Issue