com.leobia.gradle.sassjavacompiler
Owner: Leonardo
Compile and minify .sass files into a single css file. Can also merge existing css files with sass
https://github.com/leobia/SassGradleCompiler
Sources: https://github.com/leobia/SassGradleCompiler
Version 0.2.2-alpha.0 (latest)
0.2.2-alpha.0
Created 21 April 2022.
Compile and minify .sass files into a single css file. Can also merge existing css files with sass
Using the plugins DSL:
plugins {
id("com.leobia.gradle.sassjavacompiler") version "0.2.2-alpha.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.leobia.gradle:sassjavacompiler:0.2.2-alpha.0")
}
}
apply(plugin = "com.leobia.gradle.sassjavacompiler")
Using the plugins DSL:
plugins {
id "com.leobia.gradle.sassjavacompiler" version "0.2.2-alpha.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.leobia.gradle:sassjavacompiler:0.2.2-alpha.0"
}
}
apply plugin: "com.leobia.gradle.sassjavacompiler"