Package Exports
- ember-cli-less
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-less) 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-less
Use LESS to preprocess your ember-cli app's stylesheets, with support for sourceMaps and include paths.
- This is copied from https://github.com/aexmachina/ember-cli-sass. All credits to the author *
Installation
npm install --save-dev ember-cli-lessUsage
By default this addon will compile app/styles/app.less 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 lessOptions config property:
var app = new EmberApp({
...
lessOptions: {...}
});.inputFile: the input LESS file, defaults toapp.less.outputFile: the output CSS file, defaults toapp.css.includePaths: an array of include paths.sourceMap: controls whether to generate sourceMaps, defaults totruein development. The sourceMap file will be saved tooptions.outputFile + '.map'
Example
The following example assumes your bower packages are installed into bower_components/.
Install some LESS:
bower install --save foundationSpecify some include paths in Brocfile.js:
var app = new EmberApp({
lessOptions: {
includePaths: [
'bower_components/foundation/less'
]
}
});Import some deps into your app.less:
@import 'foundation'; /* import everything */
/* or just import the bits you need: @import 'foundation/functions'; */