Compass-Options
A small Node module for parsing Compass's config.rb file into options for use in Node projects (especially Grunt/Gulp/etc…)
Installation
$ npm install compass-options --save-dev
Usage
Configure your Compass config.rb file as normal. Currently reads in the following settings with the following defaults:
http_path - '.'
css_dir - 'css'
sass_dir - 'sass'
images_dir - 'images'
javascripts_dir - 'js'
fonts_dir - 'fonts'
var dirs = require('compass-options').dirs({
'config': './config.rb',
'trailing': false
});
var paths = require('compass-options').paths({
'config': './config.rb',
'trailing': false
});