A LESS plugin for Metalsmith.
npm install metalsmith-less
var less = require('metalsmith-less')
new Metalsmith(__dirname)
.use(less(options))
.build()
-
pattern
String|Array<String>
The pattern to filter source files. Default
**/*.less
. -
render
Object
The options passed to
less.render(String[, Object])
. Unfortunately, this method is undocumented. See less/less-docs#212 for more information. Defaultundefined
. -
useDynamicSourceMap
Boolean
Overrides the supplied source map configuration with a dynamic file-level configuration. This is the easiest way to enable source maps in your Metalsmith build. Default
false
.
$ npm test
MIT License, see LICENSE for details.