aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-16 18:15:55 +0100
committerAymeric Augustin2013-11-16 18:15:55 +0100
commit0a0610e8af4331a5748299e525385868ce440ef5 (patch)
tree82ff18bb516ce677e9d77c115bba00d3fe679afd /Makefile
parentb34eba5e83b86a6c324542ca4ebddfd245e47097 (diff)
downloaddjango-debug-toolbar-0a0610e8af4331a5748299e525385868ce440ef5.tar.bz2
Stop bothering with CSS compression.
For the same reasons we stopped compressing JS.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index b9f3bb3..c52bd2e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,4 @@
-# Make file to compress and join all JS files
-all: compress_js compress_css
-
-
-
-.PHONY: flake8 example test compress_js compress_css translatable_strings update_translations
+.PHONY: flake8 example test coverage translatable_strings update_translations
flake8:
flake8 debug_toolbar example tests
@@ -22,9 +17,6 @@ coverage:
coverage run --branch --source=debug_toolbar `which django-admin.py` test tests
coverage html
-compress_css:
- yuicompressor --type css debug_toolbar/static/debug_toolbar/css/toolbar.css > debug_toolbar/static/debug_toolbar/css/toolbar.min.css
-
translatable_strings:
cd debug_toolbar && django-admin.py makemessages -l en --no-wrap --no-obsolete
@echo "Please commit changes and run 'tx push -s' (or wait for Transifex to pick them)"