From 95b0a26524e7811ae03d6bac0485cf942ba7d784 Mon Sep 17 00:00:00 2001 From: Barry Clark Date: Wed, 30 Jul 2014 17:31:07 -0400 Subject: Goodbye Gruntfile - you have served me well --- Gruntfile.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 Gruntfile.js diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 663cb1a..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,30 +0,0 @@ - -module.exports = function(grunt) { - grunt.initConfig({ - pkg: grunt.file.readJSON("package.json"), - - watch: { - sass: { - files: ["scss/**/*.{scss,sass}"], - tasks: ["sass:dev"] - } - }, - - sass: { - dev: { - options: { - style: 'nested' - }, - files: { - '_site/style.css': 'scss/style.scss', - 'style.css': 'scss/style.scss' - } - }, - }, - }); - - grunt.registerTask("default", ["watch"]); - - grunt.loadNpmTasks('grunt-sass'); - grunt.loadNpmTasks("grunt-contrib-watch"); -}; -- cgit v1.2.3