0
1
Fork 0
hedera-web-mindshore/debian/rules

19 lines
272 B
Plaintext
Raw Normal View History

#!/usr/bin/make -f
#export DH_VERBOSE=1
%:
2017-12-11 12:35:58 +00:00
dh $@
2016-10-14 10:58:35 +00:00
clean:
2022-10-10 11:03:13 +00:00
npm run clean
2024-11-25 16:58:52 +00:00
dh_clean $@
2024-11-25 15:59:26 +00:00
2016-10-14 10:58:35 +00:00
build:
2024-11-27 14:08:28 +00:00
pnpm install --prefer-offline
pnpm exec quasar build
2022-10-10 11:03:13 +00:00
mkdir -p build-deps
2024-11-27 14:08:28 +00:00
cp package.json build-deps
2022-10-10 11:03:13 +00:00
(cd build-deps && npm install --omit=dev --no-audit --prefer-offline)