hopglass/tasks/development.js

37 lines
733 B
JavaScript
Raw Normal View History

2015-03-29 14:43:02 +02:00
module.exports = function (grunt) {
grunt.config.merge({
connect: {
server: {
options: {
base: {
path: 'build',
options: {
index: 'index.html'
}
},
2015-03-29 14:43:02 +02:00
livereload: true
}
}
},
watch: {
sources: {
options: {
livereload: true
},
2016-05-25 23:34:09 +02:00
files: ["*.css", "app.js", "helper.js", "lib/**/*.js", "*.html"],
tasks: ["dev"]
2015-03-29 14:43:02 +02:00
},
config: {
options: {
reload: true
},
files: ["Gruntfile.js", "tasks/*.js"],
tasks: []
}
}
});
2015-03-29 14:43:02 +02:00
grunt.loadNpmTasks("grunt-contrib-connect");
grunt.loadNpmTasks("grunt-contrib-watch");
};