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
Important! Bundling, minification and compilation of LESS, Sass and CoffeeScript is not longer part of Web Essentials 2015.
Install the new extensions Bundler & Minifier and Web Compiler instead. Also, see this list of other web development extensions that might be of interest to you.
There is an issue when minifying html containing angular elements. For example the following syntax:
ng-if="!isOk1 && !isOk2"
is output as:
ng-if=!isOK1
An important part of the "if" expression is ignored. The output should have been:
ng-if=!isOk1 && !isOk2
The text was updated successfully, but these errors were encountered: