mockko / livereload

LiveReload applies CSS/JS changes to Safari or Chrome w/o reloading the page (and autoreloads the page when HTML changes)
http://livereload.com/
1.18k stars 56 forks source link

Editing a linked @import file from primary doesn't trickle to recompile #109

Open replete opened 12 years ago

replete commented 12 years ago

Best explained with this .less snippet:

/* This file is app.less */

@import "reset.less";
@import "dependency.less";

html {
border:100px solid red}

@import "some-module.less"

Editing some-module.less (or any imported) triggers a refresh in the browser, but not a recompile of app.less.

Is there any way to force a recompile of everything? The only solution is to save some-module.less changes and then add a space to app.less - which isn't great.