gradle-css-plugin
gradle-css-plugin copied to clipboard
Gradle plugin for working with CSS
Hello, Is it possible to use this plugin in a way to combine different files not all files at once, e.g. if I have following source files: src/layout.css src/colors.css src/page1.css...
Need to update version of CSSLint Issue: https://github.com/eriwen/gradle-css-plugin/issues/44
After checking csslint using the plugin there are more warnings than using site http://csslint.net I suppose there is due to using of not the last version of csslint please update...
Hi, YUI Compressor incorrectly compresses 'calc' function in css. This issue has been fixed but YUI lib is no longer actively maintained. The last released version (2.4.8) doesn't contain objective...
``` css.source { dev { css { srcDir "src/main/webapp/resources/less" include "*.less" } } } println "css.source.dev.css.files" println css.source.dev.css.srcDirs println css.source.dev.css.files lesscss { source = css.source.dev.css.files dest = "${buildDir}/styles" } println...
Integrate automatic SASS compilation once youdevise/SassPlugin#1 is done.
Hey, I want to use the plugin but it does not keep the order of the input css files when combining them. When I input 1.css and 2.css to be...
When running the less task on a less file with the a UTF-8 file with the BOM the plugin throws the below: Execution failed for task ':lesscss'. > the number...
I have this simple tests: ``` task combineCssMandatory(type: com.eriwen.gradle.css.tasks.CombineCssTask) { source = ["WebContent/css/min/bootstrap.css", "WebContent/plugin/bootstrap-modal/css/bootstrap-modal.css", "WebContent/css/redicons.css", "WebContent/css/style.css"] dest = file("WebContent/css/style-all.css") } task minifyCssMandatory(type: com.eriwen.gradle.css.tasks.MinifyCssTask) { source = combineCssMandatory dest = file("WebContent/css/style-all-min.css")...
I'm using `gradle-css-plugin` 1.8.2 and Gradle 1.8. Twitter Bootstrap uses a single `bootstrap.less` file which uses `@import` to include all sub-components. I am therefore using the plugin as so: ```...