Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 632 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 632 Bytes

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