hedera-web/debian/rules

19 lines
315 B
Plaintext
Raw Normal View History

#!/usr/bin/make -f
#export DH_VERBOSE=1
%:
2017-12-11 12:35:58 +00:00
dh $@
2022-07-27 08:18:14 +00:00
clean:
npm --production run clean
dh_clean $@
build:
npm install --no-audit --prefer-offline
npm --production run build
mkdir build-deps
cp package.json package-lock.json build-deps
(cd build-deps && npm install --omit=dev --no-audit --prefer-offline)