mirror of
https://github.com/samuelncui/yatm.git
synced 2025-12-23 06:15:22 +00:00
14 lines
226 B
Bash
Executable File
14 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex;
|
|
|
|
CURDIR=$(cd $(dirname $0); pwd);
|
|
cd ${CURDIR}/frontend;
|
|
|
|
export PNPM_HOME="/pnpm";
|
|
export PATH="$PNPM_HOME:$PATH";
|
|
corepack enable;
|
|
pnpm install;
|
|
pnpm run build;
|
|
|
|
cp -r ./dist ../output/frontend;
|