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

20 lines
301 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 13:36:38 +00:00
2024-11-25 15:59:26 +00:00
override_dh_clean:
2016-10-14 10:58:35 +00:00
build:
2024-11-25 13:42:25 +00:00
npm install --no-audit --prefer-offline
2024-11-25 15:09:34 +00:00
npx quasar build
2022-10-10 11:03:13 +00:00
mkdir -p build-deps
cp package.json package-lock.json build-deps
(cd build-deps && npm install --omit=dev --no-audit --prefer-offline)