Skip to content
This repository was archived by the owner on Jun 28, 2018. It is now read-only.

Commit 567d2ef

Browse files
author
faruken
committed
updated documentation.
1 parent 42e7b70 commit 567d2ef

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

AUTHORS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
LessCSS is written by Faruk Akgul and contributors:
2+
3+
4+
5+
Patches
6+
```````
7+
8+
- Travis Beauvis

CHANGES

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
LessCSS Changelog
2+
=================
3+
4+
v0.1.2
5+
-------------
6+
7+
Feb, 22 2012.
8+
9+
- Added `output_dir` option.
10+
11+
12+
v0.1.1
13+
-------------
14+
15+
Feb, 09 2012.
16+
17+
- Added `compiled` option.
18+
19+
20+
v0.1
21+
-----------
22+
23+
Feb, 08 2012.
24+
25+
- First public release.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012, Faruk Akgul.
1+
Copyright (c) 2012, Faruk Akgul and contributors. See AUTHORS for more details.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
LessCSS is a helper which automatically compiles LESS files to CSS whenever the LESS files are modified.
44

5-
It works with Brubeck and web.py web frameworks. Although it's not tested on other frameworks such as bottle, it should work without any problems.
5+
It works with Brubeck, web.py and Flask web frameworks. Although it's not tested on other frameworks such as bottle, it should work without any problems.
66

77
Sample Brubeck and web.py projects are in `examples` folder.
88

99
**Note:** You need to install `less` before using this helper.
1010

1111
##Installation
1212

13-
$ pip -U install lesscss
13+
$ pip install lesscss
1414

1515
##Usage
1616

@@ -23,6 +23,8 @@ Sample Brubeck and web.py projects are in `examples` folder.
2323
- **exclude_dirs**: Directories you don't want to be searched. It'd be pointless to search for `less` files in an images directory. This parameter is expected to be a list.
2424
- **based**: If it's set `True` then LessCSS will generate the `style-(base60).css` version as well (for example; `style-dHCFD.css`). This is useful if you set expire times of static files to a distant future since browsers will not retrieve those files unless the name is different or the cache has expired. This parameter is expected to be a boolean value.
2525
- **compressed**: If it's set `True` then LessCSS will minimize the generated CSS files. This parameter is expected to be a boolean value.
26+
- **output_dir**: Absolute path of the folder where compiled CSS files
27+
should be put.
2628

2729

2830
##TODO

0 commit comments

Comments
 (0)