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

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

%:
	dh $@

execute_after_dh_auto_build:
	find dist -type f ! -name 'index.*' -delete
	find dist -type d -empty -delete
	rm -rf dist/builder

execute_after_dh_installdocs:
	dh_nodejs_autodocs

