AdminLTE/build/grunt/uglify.js

18 lines
339 B
JavaScript
Raw Normal View History

2016-06-23 16:55:12 +02:00
// 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']
}
}
};
};