Search Gradle plugins

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.leobia.gradle.sassjavacompiler") version "0.2.2-alpha.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.leobia.gradle:sassjavacompiler:0.2.2-alpha.0")
      }
    }
    
    apply(plugin = "com.leobia.gradle.sassjavacompiler")
  • Applying plugins to all subprojects .