Détail du package

ember-cli-less

gdub2215.9kMIT3.0.2

Use less to preprocess your ember-cli app css

ember-addon, less, css, preprocessor

readme

ember-cli-less

Use Less to preprocess your ember-cli app's css.

npm version Ember Observer Score Build Status

Compatibility

  • Ember.js v3.12 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above

Installation

npm install --save-dev ember-cli-less

Usage

By default, this addon will compile app/styles/app.less into dist/assets/app.css. Additional options can be specified using the lessOptions config property in ember-cli-build.js:

let app = new EmberApp({
  lessOptions: {...}
});

Available Options:

  • paths: An array of include paths
  • sourceMap: Whether to generate source maps. Defaults to true in development and can also take an object of sub options: http://lesscss.org/usage/#programmatic-usage
  • mergeTrees: An object of the available options to pass to the internal merge trees plugin

Configuring Input/Output Paths

You can configure the input and output files using ember-cli's outputPaths option in ember-cli-build.js:

let app = new EmberApp({
  outputPaths: {
    app: {
      css: {
        app: '/assets/my-project.css',
      },
    },
  },
});

You can also configure multiple input/output paths to generate multiple css files:

let app = new EmberApp({
  outputPaths: {
    app: {
      css: {
        'theme-orange': '/assets/theme-orange.css',
        'theme-purple': '/assets/theme-purple.css',
      },
    },
  },
});

Notice that you cannot specify the name of the Source Map if multiple input/output paths are used. The name gets generated from the output path (/assets/theme-orange.css -> /assets/theme-orange.css.map).

Usage in Addons

You can also use this to precompile less files in an addon. By default, this will compile addon/styles/addon.less into css that will be merged into the host app's css:

  1. Install ember-cli-less in your addon's package.json under dependencies
  2. Create your addon less file at addon/styles/addon.less (or where you specify in your options)
  3. To run the addon's dummy app, be sure to create tests/dummy/app/styles/app.less if it doesn't exist
  4. To make less files available for applications that consume this addon, create app/styles/app.less in your addon and add @import 'addon/styles/addon'; to its content

To include custom css files, use @import statment in addon/styles/addon.less. For example:

// addon/styles/addon.less
@import 'node_modules/bootstrap-less/bootstrap/bootstrap'; // look for "node_modules/bootstrap-less/bootstrap/bootstrap.less"

Examples

Using Bootstrap Less source in your app:

Install Bootstrap source:

npm install --save-dev bootstrap-less

Specify the include paths in ember-cli-build.js:

let app = new EmberApp({
  lessOptions: {
    paths: ['node_modules/bootstrap-less/bootstrap/'],
  },
});

Import into app.less:

@import 'bootstrap';

Linking source maps

When sourcemaps are enabled, you'll see the correct references to the original less files and their corresponding line numbers in Dev Tools. If you would like to link the less source files directly, you have to link them to your local filesystem in Chrome:

  1. Open dev tools > Sources tab
  2. Expand the sources pane on the left if it's not open
  3. Right-click anywhere, Add folder to workspace, add your project's folder
  4. Locate any less source file in the tree, right-click, Map to Network Resource... to create the mapping

Contributing

See the Contributing guide for details.

References

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

3.0.2 (2021-06-17)

Bug Fixes

3.0.1 (2020-04-08)

3.0.0 (2020-04-08)

⚠ BREAKING CHANGES

  • Drop Ember < 3.12 (although old versions may still work, we no longer test against them)
  • Drop support for Node < 10

Bug Fixes

  • remove lodash and update checker (c3469c4)
  • v3.11.0...v3.17.0 (6d7a56d)

2.0.6 (2020-04-08)

Bug Fixes

2.0.5 (2020-04-08)

Bug Fixes

2.0.4 (2019-10-10)

Bug Fixes

2.0.3 (2019-09-28)

Bug Fixes

2.0.1 (2018-08-13)

Bug Fixes

  • do not pass in ember-cli's registry object into Less compiler. (#66) (e47af1e)

2.0.0 (2018-07-31)

Features

BREAKING CHANGES

1.5.7 (2018-07-31)

Bug Fixes

  • revert broccoli-less-single (9df5be8)

1.5.6 (2018-07-27)

Bug Fixes