Hi all,
The issue has been fixed already in the main development branch (1.4.x) and will be released as part of 1.4.9 version.
If this affects your code, but you still would like to upgrade, you have the following options:
on line #68 instead of
private static final String REGEX_IMPORT_FROM_COMMENTS = WroUtil.loadRegexpWithKey("cssImportFromComments");
use
private static final String REGEX_IMPORT_FROM_COMMENTS = "(?:/\\*(?:[^*]|(?:\\*+[^*/]))*+\\*+/)|(?://.*)";
The problem was caused by a small issue with regular expression which is read from regexp.properties file. The patched version should fix that.
Thanks,
Alex