# fireant-less

> LESS plugin for Fireant

Latest version **0.0.3** (published 2017-02-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install fireant-less
pnpm add fireant-less
yarn add fireant-less
bun add fireant-less
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2017-02-19 |
| First published | 2017-02-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jari Lehtinen |
| Maintainers | jarilehtinen |

## Links

- npm: https://www.npmjs.com/package/fireant-less
- Repository: https://github.com/fireantjs/fireant-less
- Homepage: https://github.com/fireantjs/fireant-less#readme
- Issues: https://github.com/fireantjs/fireant-less/issues
- npm.io page: https://npm.io/package/fireant-less

## Dependencies (4)

- [less](https://npm.io/package/less.md) ^2.7.2
- [chalk](https://npm.io/package/chalk.md) ^1.1.3
- [global](https://npm.io/package/global.md) ^4.3.1
- [fireant-timestamp](https://npm.io/package/fireant-timestamp.md) ^1.0.0

## Recent versions

- 0.0.3 (latest) — 2017-02-19
- 0.0.2 — 2017-02-19
- 0.0.1 — 2017-02-16

## README

# fireant-less

[LESS](http://lesscss.org/) plugin for [Fireant](https://github.com/fireantjs/fireant)

## Installation

```shell
npm install -D fireant-less
```

## Sample fireantfile.js

```javascript
var fireant = require("fireant");
var less = require("fireant-less");

fireant.task("watch", function() {
   fireant.watch("css/*.less", function(file) {
      less("css/index.less").save("html/css/styles.css");
   });
});
```

## Sample fireantfile.js, with options

```javascript
var fireant = require("fireant");
var less = require("fireant-less");
var global = require("global");

global.options = {
   less: {
      compress: false
   }
};

fireant.task("watch", function() {
   fireant.watch("css/*.less", function(file) {
      less("css/index.less").save("html/css/styles.css");
   });
});
```

---
_Source: https://npm.io/package/fireant-less · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
