Added recommended themes section to readme
[jekyll-now.git] / Gruntfile.js
blob663cb1a954fce98257015945b23a96499b4c3e9e
2 module.exports = function(grunt) {
3   grunt.initConfig({
4     pkg: grunt.file.readJSON("package.json"),
6     watch: {
7       sass: {
8         files: ["scss/**/*.{scss,sass}"],
9         tasks: ["sass:dev"]
10       }
11     },
13     sass: {
14       dev: {
15         options: {
16           style: 'nested'
17         },
18         files: {
19           '_site/style.css': 'scss/style.scss',
20           'style.css': 'scss/style.scss'
21         }
22       },
23     },
24   });
26   grunt.registerTask("default", ["watch"]);
28   grunt.loadNpmTasks('grunt-sass');
29   grunt.loadNpmTasks("grunt-contrib-watch");