fmartingr.com-legacy/gruntfile.coffee

23 lines
504 B
CoffeeScript

module.exports = (grunt) ->
# Project
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'
watch:
options:
livereload: true
layout:
files: ['fmartingrcom/themes/**/*.html', 'fmartingrcom/themes/**/*.jinja']
tasks: []
sass:
files: ['fmartingrcom/themes/**/*.sass']
tasks: []
# Modules
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-bower'
# Tasks
grunt.registerTask 'default', ["watch"]