Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sass.js « config « tasks - github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f3b978f7b42fba104676fc57f1c6c7cc60e9786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const sass = require('sass');

module.exports = function(grunt) {
  grunt.config.set('sass', {
    // Compile `tranquilpeak.scss` file into `tranquilpeak.css`
    dev: {
      options: {
        implementation: sass,
        sourceMap: false
      },
      files: {
        'static/css/tranquilpeak.css': 'src/scss/tranquilpeak.scss'
      }
    }
  });

  grunt.loadNpmTasks('grunt-sass');
};