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