-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Less is not compiled "on the fly" in development mode #307
Comments
@christophherr is this a regression issue as introduced in 1.5.0? Or has it been there previously? |
@hellofromtonya |
I'm not finding a difference between 1.4 and 1.5. When in development mode, we do run the Compiler to convert LESS into CSS. We just don't concatenate ALL of the stylesheets and then minify them into one stylesheet. HOWEVER, we do have an issue that predates 1.5, which is: The compiler does not re-compile when in development mode. Whoopsie. Proposed solution is:
Then it will recompile on every single page load. |
This commit fixes Getbeans#307 by: 1. Flushing the cache when in development mode to avoid creating too many files. 2. Recompiling when in development mode.
This commit fixes Getbeans#307 by recompiling when in development mode.
Fixed #307 to recompile when in development mode.
Adding from the forum: https://community.getbeans.io/discussion/compiler-not-disabled-in-development-mode/
The text was updated successfully, but these errors were encountered: