webpack-less-theme

A fork of webpack-less-theme-plugin, but uses reference imports instead.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
webpack-less-theme
001.0.35 years ago5 years agoMinified + gzip package size for webpack-less-theme in KB

Readme

webpack-less-theme-plugin
A fork of webpack-less-theme-plugin, but uses reference imports instead.
Inject less variables to your less file. Support HMR.

Installation

$ npm i webpack-less-theme-plugin --save-dev

Usage

Add to webpack config.
// webpack.config.js
const LessThemePlugin = require('webpack-less-theme-plugin');

module.exports = {
  ...,
  plugins: [
    new LessThemePlugin({ theme: './blue.less' }),
  ],
};

// blue.less
@primary-color: blue;

Options

  • test - webpack's Condation.rule. Default is /\.less$/.
  • theme - less theme file.
  • cwd - Current working dir.

License

MIT