2015-08-20 11:22:36 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
#export DH_VERBOSE=1
|
2019-03-28 15:33:26 +00:00
|
|
|
export TERM=dumb
|
2015-08-20 11:22:36 +00:00
|
|
|
|
|
|
|
%:
|
2017-12-11 12:35:58 +00:00
|
|
|
dh $@
|
2015-08-20 11:22:36 +00:00
|
|
|
|
2016-10-14 10:58:35 +00:00
|
|
|
clean:
|
|
|
|
npm --production run clean
|
|
|
|
dh_clean $@
|
|
|
|
|
|
|
|
build:
|
2018-05-11 14:50:43 +00:00
|
|
|
npm install
|
2016-10-14 10:58:35 +00:00
|
|
|
npm --production run build
|