mirror of https://github.com/ColorlibHQ/AdminLTE
18 lines
339 B
JavaScript
18 lines
339 B
JavaScript
// 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']
|
|
}
|
|
}
|
|
};
|
|
};
|