UNPKG

kongadmin

Version:
22 lines (21 loc) 537 B
/** * `syncAssets` * * --------------------------------------------------------------- * * This Grunt tasklist is not designed to be used directly-- rather * it is a helper called by the `watch` task (`tasks/config/watch.js`). * * For more information see: * http://sailsjs.org/documentation/anatomy/my-app/tasks/register/sync-assets-js * */ module.exports = function(grunt) { grunt.registerTask('syncAssets', [ 'jst:dev', 'less:dev', 'sass:dev', 'sync:dev', 'coffee:dev' ]); };