Stylus compiler for Gears


License
ISC
Install
pip install gears-stylus==0.2

Documentation

gears-stylus

Stylus compiler for Gears. This package already includes the Stylus source code for you, so you don't need to worry about installing it yourself.

Bundled Stylus version: 0.45.1

Installation

Install gears-stylus with pip:

$ pip install gears-stylus

Requirements

gears-stylus requires node.js to be installed in your system.

Usage

Add gears_stylus.StylusCompiler to environment's compilers registry:

from gears_stylus import StylusCompiler
environment.compilers.register('.styl', StylusCompiler.as_handler())

If you use Gears in your Django project, add this code to its settings:

GEARS_COMPILERS = {
    '.styl': 'gears_stylus.StylusCompiler',
}