- Copy these files to your Sass project.
- This fork-able version requires the support-for Sass module. Add it to your package.json with:
npm install --save-dev support-for
- Add support-for's
sass
directory to your nodeSass'includePaths
option.
var sass = require('node-sass'),
path = require('path');
sass.render({
file: scss_filename,
includePaths: [
path.dirname(require.resolve('support-for'))
]
}, function(err, result) { /*...*/ });
If you are not using node-sass with libSass, you probably already know how to include 3rd party libraries into your Sass project.
- Copy these files to your Sass project.
- This fork-able version requires the support-for Sass module. Add support-for's
sass
directory to your libSass include paths in the "usual way".
In addition to copying these files to your Sass project, you'll also need to:
- Edit your
Gemfile
file to add:
gem 'support-for', '~> 1.0'
- If you use Compass, edit your
config.rb
file to add:
require 'support-for'
- Update your local Gems with:
bundle install