| 12345678910111213141516171819202122232425262728 |
- /**
- * `tasks/register/prod.js`
- *
- * ---------------------------------------------------------------
- *
- * 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:
- * https://sailsjs.com/anatomy/tasks/register/prod.js
- *
- */
- module.exports = function(grunt) {
- grunt.registerTask('prod', [
- 'polyfill:prod', //« Remove this to skip transpilation in production (not recommended)
- 'compileAssets',
- 'babel', //« Remove this to skip transpilation in production (not recommended)
- 'concat',
- 'uglify',
- 'cssmin',
- 'sails-linker:prodJs',
- 'sails-linker:prodStyles',
- 'sails-linker:clientSideTemplates',
- ]);
- };
|