uglify.js 339 B

1234567891011121314151617
  1. // Uglify task info. Compress the js files.
  2. 'use strict';
  3. module.exports = function (grunt) {
  4. return {
  5. options: {
  6. mangle: true,
  7. preserveComments: 'some'
  8. },
  9. target: {
  10. files: {
  11. 'dist/js/adminlte.min.js': ['dist/js/adminlte.js'],
  12. 'dist/js/app.min.js': ['dist/js/app.js']
  13. }
  14. }
  15. };
  16. };