gradle-css-plugin
gradle-css-plugin copied to clipboard
Gradle plugin for working with CSS
If you try to use the plugin with Gradle 6 just by declaring it in the plugin block it will not work. The change is actually fixed in master but...
It would by nice to have parallel less files compilation that uses all or defined number of cpu cores. We have many less files and it takes about 11mins to...
Fix deprecation warning `The DefaultSourceDirectorySet constructor has been deprecated`. - Fixed by using the ObjectFactory service to create the source directory set This fixes the following deprecation warning seen in...
When there is a CSS property such as `calc(10px + 48%)`, it gets compressed to `calc(10px+48%)`, which doesn't work (calc requires spaces around the operator). Note that this bug only...
The latest `master` branch fails to build successfully: - There is a failure trying to use JDK 8 at https://travis-ci.org/eriwen/gradle-css-plugin/builds/573584217 - The build is trying to resolve unresolvable Gradle dependencies...
Fixes gradle-js-plugin issue [#168](https://github.com/eriwen/gradle-js-plugin/issues/168) which also exists in this project.
It would be a cool feature for this plugin to add another task that is a daemon that we can run during development. The daemon would watch less files for...
Hi ! Using minifyCss : ``` @keyframes bug-example { 0% { ... } 100%{ ... } } ``` is converting to : ``` @keyframes bug-example { 0 { ... }...
Hello, when I try to minify my style.css and also bootstrap.css and font-awesome.css to one file with the Console command "./gradlew minifyCss " I get the following error: ``` :combineCss...