UNPKG

sails-blueprint-generate

Version:
25 lines (20 loc) 511 B
/* Configuring Watcher */ config.watch = { /* Grunt Watch Options */ options : { livereload : __RELOAD__ }, /* Watch public folder changes to support livereload */ public : { files : [ '.livereload' ] }, } /* Loading Task */ grunt.loadNpmTasks('grunt-contrib-watch'); /* Livereload Hook */ grunt.registerTask('livereload', function() { var file = require('fs'); var done = this.async(); file.writeFileSync('.livereload', new Date()); done(true); });