hedera-web/debian/rules

20 lines
361 B
Makefile
Executable File

#!/usr/bin/make -f
#export DH_VERBOSE=1
%:
dh $@
override_dh_clean:
pnpm run clean
rm -rf build-deps
dh_clean $@
override_dh_auto_build:
pnpm install --prefer-offline
pnpm exec quasar build
mkdir -p build-deps
cp package.json pnpm-lock.yaml build-deps
(cd build-deps && pnpm install --prod --shamefully-hoist --config.audit=true --prefer-offline)