mirror of
https://github.com/penpot/penpot.git
synced 2026-09-22 12:25:04 -04:00
44 lines
991 B
Python
Executable File
44 lines
991 B
Python
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
export CURRENT_VERSION=$1;
|
|
export NODE_ENV=production;
|
|
|
|
pnpm install || exit 1;
|
|
pnpm run build:wasm;
|
|
|
|
WASM_SRC="resources/wasm";
|
|
WASM_SHARED="src/app/wasm/shared.js";
|
|
if [ ! -f "$WASM_SRC/render-wasm.wasm" ] || [ ! -f "$WASM_SHARED" ]; then
|
|
echo "ERROR: the render-wasm build did not produce:" >&2;
|
|
echo " $WASM_SRC/render-wasm.wasm" >&2;
|
|
echo " $WASM_SHARED" >&2;
|
|
exit 1;
|
|
fi
|
|
|
|
rm -rf target
|
|
|
|
# Build the application
|
|
pnpm run build;
|
|
|
|
cp pnpm-lock.yaml target/;
|
|
cp pnpm-workspace.yaml target/;
|
|
cp package.json target/;
|
|
touch target/pnpm-workspace.yaml;
|
|
|
|
mkdir -p target/$WASM_SRC;
|
|
cp "$WASM_SRC/render-wasm.js" "$WASM_SRC/render-wasm.wasm" target/$WASM_SRC/;
|
|
|
|
cat <<EOF | tee target/setup
|
|
#/usr/bin/env bash
|
|
set -e;
|
|
command -v pnpm >/dev/null || { echo "error: pnpm not found in PATH" >&2; exit 1; };
|
|
pnpm install
|
|
pnpm exec playwright install chromium;
|
|
EOF
|
|
|
|
chmod +x target/setup;
|
|
|
|
sed -i -re "s/\%version\%/$CURRENT_VERSION/g" ./target/app.js;
|