ember-cli-sass-less

0.0.1 • Public • Published

ember-cli-sass-less

and in the darkness bind them

Combines ember-cli-sass and 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) 
  }
});

/ember-cli-sass-less/

    Package Sidebar

    Install

    npm i ember-cli-sass-less

    Weekly Downloads

    2

    Version

    0.0.1

    License

    MIT

    Unpacked Size

    10.8 kB

    Total Files

    7

    Last publish

    Collaborators

    • jkusa