Class SassCompilerTask

java.lang.Object
com.mohamnag.jstatic.plugins.sass_compiler.SassCompilerTask
All Implemented Interfaces:
BuildTask

public class SassCompilerTask extends Object implements BuildTask
Compiles all files with extension ".scss" that does not start with "_" from configured source directory into configured output directory.

One might choose to compress output while compiled content is written into output using configuration.

  • Field Details

    • PATH_MATCHER

      public static final PathMatcher PATH_MATCHER
  • Constructor Details

    • SassCompilerTask

      public SassCompilerTask(Config globalConfig)
  • Method Details

    • run

      public void run(BuildContext buildContext)
      Specified by:
      run in interface BuildTask
    • underWatchInputPaths

      public List<Path> underWatchInputPaths()
      Description copied from interface: BuildTask
      If a plugin depends on file input, it shall return list of its input paths to be watched for changes. Paths can be either files or directories. In case of directories, only root path are necessary to be listed and if input path has subdirectories, they will be automatically watched.
      Specified by:
      underWatchInputPaths in interface BuildTask
    • underWatchConfigPaths

      public List<Path> underWatchConfigPaths()
      Description copied from interface: BuildTask
      If a plugin depends on config files in addition to the general config file of the application, like functionality extensions stored in files, it shall return these paths here. A change detected in these paths will result in recreation of the plugin.
      Specified by:
      underWatchConfigPaths in interface BuildTask