Closed larsgrefer closed 7 years ago
I have the following configuration:
compass { //sourcemap = true //debugInfo = true //force = false //environment = "development" //outputStyle = "expanded" importPath = rootProject.files("shared/src/main/sass") } task("compileResourceCompass", type: com.github.robfletcher.compass.CompassTask ) { command = "compile" sassDir = project.file("src/main/resources") cssDir = processResources.destinationDir //mustRunAfter processResources }
My custom values for sassDir and cssDir are not used.
sassDir
cssDir
Is there a way to create multiple instances of CompassTask with different directories?
CompassTask
I have the following configuration:
My custom values for
sassDir
andcssDir
are not used.Is there a way to create multiple instances of
CompassTask
with different directories?