parent
0107946d6c
commit
ccf3da7962
@ -1,20 +1,21 @@
|
|||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
|
|
||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
pkg: grunt.file.readJSON('package.json'),
|
pkg: grunt.file.readJSON('package.json'),
|
||||||
watch: {
|
watch: {
|
||||||
options: {
|
options: {
|
||||||
livereload: {
|
livereload: {
|
||||||
port: 35729
|
port: 35729
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
all: {
|
all: {
|
||||||
files: ['**/*'],
|
files: ['**/*'],
|
||||||
tasks: []
|
tasks: []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
|
grunt.registerTask('default', ['watch']);
|
||||||
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
||||||
grunt.registerTask('default', ['watch']);
|
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in new issue