Node Sass compiler for django-pipeline
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Joshua Potter 13e86155da Merge pull request #3 from austinhulak/updatedReadMe
Updated readme to reflect correct module name
2015-12-19 17:41:39 -05:00
pipeline_node_sass Inital Commit 2014-05-18 00:11:37 -04:00
.gitignore Inital Commit 2014-05-18 00:11:37 -04:00
LICENSE Inital Commit 2014-05-18 00:11:37 -04:00
MANIFEST.in Inital Commit 2014-05-18 00:11:37 -04:00
README.md Updated readme to reflect correct module name 2015-12-19 15:19:53 -06:00
setup.py Inital Commit 2014-05-18 00:11:37 -04:00

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',
)