Skip to content
This repository has been archived by the owner on Dec 27, 2017. It is now read-only.

bit3archive/compass-polyfill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Compass polyfill

Are you bored of using compass just for some vendor prefixes? Then compass polyfill is right for you! Compass polyfill provide most compass functions, but will only return good old plain standard conform css code!

Usage

All you need is to set the include path to the src directory.

sassc

sassc -I /path/to/compass-polyfill/src ...

sass

sass -I /path/to/compass-polyfill/src ...

scss

scss -I /path/to/compass-polyfill/src ...

node-sass

sass.render({
    includePaths: [
        '/path/to/compass-polyfill/src'
    ],
    ...
});

gulp-sass

return gulp
    ...
    .pipe(sass({
        includePaths: [
            '/path/to/compass-polyfill/src'
        ],
        ...
    }))
    ...

Tests

Compass polyfill will provide mocha unit tests. To run the tests first do a npm install and then npm test.

About

[abandoned] A polyfill for compass based projects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published