Created
June 20, 2013 13:50
-
-
Save basilio/5822868 to your computer and use it in GitHub Desktop.
Compile less with inotify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compile less with inotify | |
## Detect all changes on every files in the less folder | |
## Compile the master less file, where you call all less files | |
## Update the css output file | |
/path/to/less/ IN_MODIFY lessc /path/to/less/compiler.less /path/to/css/style.css | |
# Minified | |
/path/to/less/ IN_MODIFY lessc --yui-compress /path/to/less/compiler.less /path/to/css/style.min.css |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment