com.github.cleydyr.dart.command.SassCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dart-sass-maven-plugin Show documentation
Show all versions of dart-sass-maven-plugin Show documentation
A Maven plugin that allows to compile SASS using Dart Sass
package com.github.cleydyr.dart.command;
import com.github.cleydyr.dart.command.exception.SassCommandException;
public interface SassCommand {
void execute() throws SassCommandException;
}