adding grunt file

master
Matt Huntington 10 years ago
parent 97aa4b8da9
commit 6c9e039e0c

@ -0,0 +1,20 @@
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
options: {
livereload: {
port: 35729
}
},
all: {
files: ['**/*'],
tasks: []
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['watch']);
};
Loading…
Cancel
Save