From 9f634aba3cf18cd38d7298505e1bf5ff6e107346 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Mon, 4 Feb 2013 17:33:26 -0500 Subject: [PATCH] Remove compressed flag from SASS call in pipeline so we can diff the generated CSS --- lms/envs/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index 16472795e0..0b76c6b241 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -530,7 +530,7 @@ PIPELINE_COMPILERS = [ 'pipeline.compilers.coffee.CoffeeScriptCompiler', ] -PIPELINE_SASS_ARGUMENTS = '-t compressed -r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT) +PIPELINE_SASS_ARGUMENTS = '-r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT) PIPELINE_CSS_COMPRESSOR = None PIPELINE_JS_COMPRESSOR = None