mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-23 07:50:23 +00:00
commit
abad169f4b
2 changed files with 5 additions and 4 deletions
|
|
@ -63,7 +63,8 @@ module.exports = function(grunt) {
|
|||
|
||||
uglify: {
|
||||
options: {
|
||||
banner: '<%= banner %>'
|
||||
banner: '<%= banner %>',
|
||||
report: 'min'
|
||||
},
|
||||
bootstrap: {
|
||||
src: ['<%= concat.bootstrap.dest %>'],
|
||||
|
|
@ -217,4 +218,4 @@ module.exports = function(grunt) {
|
|||
var files = getFiles('js') + getFiles('less') + getFiles('fonts')
|
||||
fs.writeFileSync('assets/js/raw-files.js', files)
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -659,7 +659,7 @@ JSZip.prototype = (function () {
|
|||
if ( !this.files.hasOwnProperty(name) ) { continue; }
|
||||
var file = this.files[name];
|
||||
|
||||
var compressionName = file.compression || options.compression.toUpperCase();
|
||||
var compressionName = file.options.compression || options.compression.toUpperCase();
|
||||
var compression = JSZip.compressions[compressionName];
|
||||
if (!compression) {
|
||||
throw new Error(compressionName + " is not a valid compression method !");
|
||||
|
|
@ -1422,4 +1422,4 @@ JSZip.base64 = (function() {
|
|||
}());
|
||||
|
||||
// enforcing Stuk's coding style
|
||||
// vim: set shiftwidth=3 softtabstop=3:
|
||||
// vim: set shiftwidth=3 softtabstop=3:
|
||||
|
|
|
|||
Loading…
Reference in a new issue