You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 28, 2018. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
LessCSS is a helper which automatically compiles LESS files to CSS whenever the LESS files are modified.
4
4
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.
6
6
7
7
Sample Brubeck and web.py projects are in `examples` folder.
8
8
9
9
**Note:** You need to install `less` before using this helper.
10
10
11
11
##Installation
12
12
13
-
$ pip -U install lesscss
13
+
$ pip install lesscss
14
14
15
15
##Usage
16
16
@@ -23,6 +23,8 @@ Sample Brubeck and web.py projects are in `examples` folder.
23
23
-**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.
24
24
-**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.
25
25
-**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
0 commit comments