1234567891011121314151617 |
- // Uglify task info. Compress the js files.
- 'use strict';
- module.exports = function (grunt) {
- return {
- options: {
- mangle: true,
- preserveComments: 'some'
- },
- target: {
- files: {
- 'dist/js/adminlte.min.js': ['dist/js/adminlte.js'],
- 'dist/js/app.min.js': ['dist/js/app.js']
- }
- }
- };
- };
|