Skip to content

Latest commit

 

History

History
 
 

default

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Fork-able normalize-scss
for libSass or Ruby Sass

Using with node-sass

  1. Copy these files to your Sass project.
  2. This fork-able version requires the support-for Sass module. Add it to your package.json with:
npm install --save-dev support-for
  1. 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) { /*...*/ });

Using with libSass

If you are not using node-sass with libSass, you probably already know how to include 3rd party libraries into your Sass project.

  1. Copy these files to your Sass project.
  2. 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".

Using with Ruby Sass

In addition to copying these files to your Sass project, you'll also need to:

  1. Edit your Gemfile file to add:
gem 'support-for', '~> 1.0'
  1. If you use Compass, edit your config.rb file to add:
require 'support-for'
  1. Update your local Gems with:
bundle install