com.eriwen.gradle.js.source.JavaScriptSourceSet.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-js-plugin Show documentation
Show all versions of gradle-js-plugin Show documentation
A Gradle plugin for working with JS.
The newest version!
package com.eriwen.gradle.js.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 JavaScriptSourceSet extends Named, Configurable {
SourceDirectorySet getJs()
SourceDirectorySet js(Action action)
JavaScriptProcessingChain getProcessing()
JavaScriptProcessingChain processing(Action action)
FileCollection getProcessed()
}