diff --git a/compressor/conf.py b/compressor/conf.py index ca146f6..5ba7bee 100644 --- a/compressor/conf.py +++ b/compressor/conf.py @@ -31,6 +31,7 @@ class CompressorConf(AppConf): # ('text/coffeescript', 'coffee --compile --stdio'), # ('text/less', 'lessc {infile} {outfile}'), # ('text/x-sass', 'sass {infile} {outfile}'), + # ('text/stylus', 'stylus < {infile} > {outfile}'), # ('text/x-scss', 'sass --scss {infile} {outfile}'), ) CLOSURE_COMPILER_BINARY = 'java -jar compiler.jar' diff --git a/docs/settings.txt b/docs/settings.txt index f86a546..c2d684c 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -226,6 +226,7 @@ Backend settings ('text/less', 'lessc {infile} {outfile}'), ('text/x-sass', 'sass {infile} {outfile}'), ('text/x-scss', 'sass --scss {infile} {outfile}'), + ('text/stylus', 'stylus < {infile} > {outfile}'), ('text/foobar', 'path.to.MyPrecompilerFilter'), )