Package Exports
- ember-cli-sass
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ember-cli-sass) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ember-cli-sass
Use node-sass to preprocess your ember-cli app's files, with support for sourceMaps and include paths.
Installation
npm install --save-dev ember-cli-sass
Usage
By default this addon will compile app/styles/app.scss
into dist/assets/app.css
and produce a sourceMap for your delectation.
Or, if you want more control then you can specify options using the sassOptions
config property:
var app = new EmberApp({
...
sassOptions: {...}
});
.inputFile
: the input SASS file, defaults toapp.scss
.outputFile
: the output CSS file, defaults toapp.css
.includePaths
: an array of include paths.sourceMap
: controls whether to generate sourceMaps, defaults totrue
. The sourceMap file will be saved tooptions.outputFile + '.map'