com.eriwen.gradle.css.source.CssSourceSet.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-css-plugin Show documentation
Show all versions of gradle-css-plugin Show documentation
A Gradle plugin for working with CSS.
The newest version!
package com.eriwen.gradle.css.source
import org.gradle.api.Action
import org.gradle.api.Named
import org.gradle.api.file.FileCollection
import org.gradle.api.file.SourceDirectorySet
import org.gradle.util.Configurable
interface CssSourceSet extends Named, Configurable {
SourceDirectorySet getCss()
SourceDirectorySet css(Action action)
CssProcessingChain getProcessing()
CssProcessingChain processing(Action action)
FileCollection getProcessed()
}