AdminLTE/build/grunt/uglify.js
2016-07-02 11:43:17 -04:00

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']
}
}
};
};