UNPKG

kongadmin

Version:
23 lines (22 loc) 558 B
/** * `prod` * * --------------------------------------------------------------- * * This Grunt tasklist will be executed instead of `default` when * your Sails app is lifted in a production environment (e.g. using * `NODE_ENV=production node app`). * * For more information see: * http://sailsjs.org/documentation/anatomy/my-app/tasks/register/prod-js * */ module.exports = function(grunt) { grunt.registerTask('prod', [ 'compileAssets', 'concat', 'uglify', 'cssmin', 'linkAssetsBuildProd' ]); };