0.1.1 • Published 7 years ago

sass-runner v0.1.1

Weekly downloads
33
License
-
Repository
github
Last release
7 years ago

sass-runner

A small wrapper around node-sass.

Usage

sass-runner takes two arguments, sass-runner(data, paths) and returns a Promise.

data

a Type: <String> of sass

paths

an Type: <Array> of paths that are mapped to includePaths

Example

const data = `
  $blue: 'blue';

  .test-1 {
    color: $blue;
  }
`;

run(data, ['./src/scss'])
.then(x => console.log(x));