0.1.1 • Published 9 years ago

sigh-sass v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

sigh-sass

build status

Compiles css files with node-sass. The sass compilers run in the sigh process pool to take advantage of multiple CPUs/cores.

Example

npm install --save node-sass sigh-sass then add this to your sigh.js:

var sass, glob, write

module.exports = function(pipelines) {
  pipelines['build:source'] = [
    glob({ basePath: 'src' }, '**/*.scss'),
    sass(),
    write('build/assets'),
  ]
}

You can pass an object containing node-sass options as the first parameter to sass.

TODO

  • Write more tests
0.1.1

9 years ago

0.1.0

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago