source: Dev/trunk/node_modules/grunt-contrib-less/docs/less-examples.md @ 484

Last change on this file since 484 was 484, checked in by hendrikvanantwerpen, 11 years ago

Commit node_modules, to make checkouts and builds more deterministic.

File size: 342 bytes
Line 
1# Usage Examples
2
3```js
4less: {
5  development: {
6    options: {
7      paths: ["assets/css"]
8    },
9    files: {
10      "path/to/result.css": "path/to/source.less"
11    }
12  },
13  production: {
14    options: {
15      paths: ["assets/css"],
16      yuicompress: true
17    },
18    files: {
19      "path/to/result.css": "path/to/source.less"
20    }
21  }
22}
23```
Note: See TracBrowser for help on using the repository browser.