mirror of
https://github.com/jrpotter/django-pipeline-node-sass.git
synced 2026-09-03 01:01:30 +00:00
Node Sass compiler for django-pipeline
- Python 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
|
||
| pipeline_node_sass | ||
| .gitignore | ||
| LICENSE | ||
| MANIFEST.in | ||
| README.md | ||
| setup.py | ||
Django Pipeline Node Sass
[VERSION 1.0.0 - 05/18/2014]
django-pipeline-node-sass enables a node SASS compiler for django-pipeline.
Installation
$ pip install django-pipeline-node-sass
$ pip install git+https://github.com/jrpotter/django-pipeline-node-sass.git
Usage
# settings.py
# Default: '/usr/bin/env node-sass'
PIPELINE_NODE_SASS_BINARY = '...'
# Default: '--output-style compressed'
PIPELINE_NODE_SASS_ARGUMENTS = '...'
PIPELINE_COMPILERS = (
'pipeline_node_sass.compiler.NodeSassCompiler',
)