All Downloads are FREE. Search and download functionalities are using the official Maven repository.

report-resources.chartist.chartist-plugin-tooltip.tasks.sass.js Maven / Gradle / Ivy

/**
 * sass
 * ======
 *
 * Compile scss to css
 *
 * Link: https://github.com/gruntjs/grunt-contrib-sass
 */

'use strict';

module.exports = function (grunt) {
  return {
    dist: {
      files: [{
        expand: true,
        cwd: '<%= pkg.config.src %>/scss',
        src: ['*.scss'],
        dest: '<%= pkg.config.src %>/css',
        ext: '.css'
      }]
    }
  };
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy