#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@

override_dh_auto_build:
	dh_auto_build
	# Our uglifyjs is not able to compact this files for now
	for f in dist/*.js.map dist/*/*.js.map; do \
		cp $$f $${f%.js.map}.min.js.map; \
	done
	for f in dist/*.js dist/*/*.js; do \
		cp $$f $${f%.js}.min.js; \
	done

#override_dh_auto_test:
