fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/gruntfile.coffee

26 lines
617 B
CoffeeScript
Raw Permalink Normal View History

2014-03-18 12:48:12 +00:00
module.exports = (grunt) ->
# Project
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'
watch:
options:
livereload: true
layout:
files: ['shelfzilla/themes/**/*.html', 'shelfzilla/themes/**/*.jinja']
2014-03-18 12:48:12 +00:00
tasks: []
less:
files: ['shelfzilla/themes/bootflat/static/less/*.less']
tasks: []
2014-03-18 12:48:12 +00:00
coffee:
files: ['shelfzilla/themes/bootflat/static/coffee/*.coffee']
tasks: []
2014-03-18 12:48:12 +00:00
# Modules
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-bower'
2014-03-18 12:48:12 +00:00
# Tasks
grunt.registerTask 'default', ["watch"]