2015-03-29 14:43:02 +02:00
|
|
|
module.exports = function (grunt) {
|
|
|
|
grunt.config.merge({
|
|
|
|
connect: {
|
|
|
|
server: {
|
|
|
|
options: {
|
2016-05-22 23:39:19 +02:00
|
|
|
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"],
|
2016-05-23 00:13:21 +02:00
|
|
|
tasks: ["dev"]
|
2015-03-29 14:43:02 +02:00
|
|
|
},
|
|
|
|
config: {
|
|
|
|
options: {
|
|
|
|
reload: true
|
|
|
|
},
|
|
|
|
files: ["Gruntfile.js", "tasks/*.js"],
|
|
|
|
tasks: []
|
|
|
|
}
|
|
|
|
}
|
2017-03-17 03:14:57 +01:00
|
|
|
});
|
2015-03-29 14:43:02 +02:00
|
|
|
|
2017-03-17 03:14:57 +01:00
|
|
|
grunt.loadNpmTasks("grunt-contrib-connect");
|
|
|
|
grunt.loadNpmTasks("grunt-contrib-watch");
|
|
|
|
};
|