Commit fe4f7bb2 by Calen Pennington

Compress sass and js, except in dev environments

parent d2ec58c0
...@@ -300,9 +300,10 @@ PIPELINE_COMPILERS = [ ...@@ -300,9 +300,10 @@ PIPELINE_COMPILERS = [
'pipeline.compilers.coffee.CoffeeScriptCompiler', 'pipeline.compilers.coffee.CoffeeScriptCompiler',
] ]
PIPELINE_SASS_ARGUMENTS = '-r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT) PIPELINE_SASS_ARGUMENTS = '-t compressed -r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT)
PIPELINE_CSS_COMPRESSOR = None PIPELINE_CSS_COMPRESSOR = None
PIPELINE_JS_COMPRESSOR = 'pipeline.compressors.yui.YUICompressor'
STATICFILES_IGNORE_PATTERNS = ( STATICFILES_IGNORE_PATTERNS = (
"sass/*", "sass/*",
...@@ -311,6 +312,8 @@ STATICFILES_IGNORE_PATTERNS = ( ...@@ -311,6 +312,8 @@ STATICFILES_IGNORE_PATTERNS = (
"*.pyc" "*.pyc"
) )
PIPELINE_YUI_BINARY = '/usr/bin/yui-compressor'
################################### APPS ####################################### ################################### APPS #######################################
INSTALLED_APPS = ( INSTALLED_APPS = (
# Standard ones that are always installed... # Standard ones that are always installed...
......
...@@ -85,5 +85,4 @@ FILE_UPLOAD_HANDLERS = ( ...@@ -85,5 +85,4 @@ FILE_UPLOAD_HANDLERS = (
########################### PIPELINE ################################# ########################### PIPELINE #################################
PIPELINE_COFFEE_SCRIPT_BINARY = 'coffee' PIPELINE_COFFEE_SCRIPT_BINARY = 'coffee'
PIPELINE_JS_COMPRESSOR = None PIPELINE_SASS_ARGUMENTS = '-r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT)
PIPELINE_CSS_COMPRESSOR = None
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment