Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkusa/ember-cli-sass-less
Combines ember-cli-sass and ember-cli-less into one (somewhat hacky) addon. Mainly to assist in migration from less to sass.
https://github.com/jkusa/ember-cli-sass-less
Last synced: about 24 hours ago
JSON representation
Combines ember-cli-sass and ember-cli-less into one (somewhat hacky) addon. Mainly to assist in migration from less to sass.
- Host: GitHub
- URL: https://github.com/jkusa/ember-cli-sass-less
- Owner: jkusa
- License: mit
- Fork: true (adopted-ember-addons/ember-cli-sass)
- Created: 2020-10-16T23:16:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-15T18:00:21.000Z (about 4 years ago)
- Last Synced: 2024-04-27T03:41:35.176Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 676 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ember-cli-sass-less
> _and in the darkness bind them_
Combines [ember-cli-sass](https://github.com/adopted-ember-addons/ember-cli-sass) and [ember-cli-less](https://github.com/gpoitch/ember-cli-less) into one (somewhat hacky) addon. Mainly to assist in migration from less to sass.
## Installation
```
ember install ember-cli-sass-less
```## Configuration
Specify the include paths in ember-cli-build.js:
```
let app = new EmberApp({
sassOptions: {
//standard ember-cli-sass options go here
excludeFiles: [] // `app/styles` files not to be process as sass files
},
lessOptions: {
//standard ember-cli-less options go here
lessFiles: ['app'], // `app/styles` files to process as less files
lessSuffix: 'my-suffix' // defaults to `.less`, output name suffix (ex: app --> app.less.css)
}
});
```