hopglass/tasks/development.js

37 lines
738 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: {
2017-03-18 15:33:49 +01:00
path: "build",
options: {
2017-03-18 15:33:49 +01:00
index: "index.html"
}
},
2015-03-29 14:43:02 +02:00
livereload: true
}
}
},
watch: {
sources: {
options: {
livereload: true
},
2016-05-26 22:29:21 +02:00
files: ["*.css", "app.js", "lib/**/*.js", "*.html", "scss/**/*.scss"],
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");
};