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

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