Build/grunt: Another attempt at using adm-zip. Keep the result in place, but don't (yet) use it - need to report issues to adm-zip

This commit is contained in:
Jörn Zaefferer 2012-03-19 23:08:56 +01:00
parent 72d3aa2740
commit 2a1ee37258
2 changed files with 15 additions and 14 deletions

View File

@ -308,24 +308,24 @@ task.registerMultiTask( "copy", "Copy files to destination folder and replace @V
task.registerMultiTask( "zip", "Create a zip file for release", function() {
var done = this.async();
// TODO switch back to adm-zip for better cross-platform compability once it actually works
// 0.1.2 doesn't compress properly (or at all)
// 0.1.3 works, but result can't be unzipped
// its also a lot slower then zip program, probably due to how its used...
// var files = file.expand( "dist/" + this.file.src + "/**/*" );
// log.writeln( "Creating zip file " + this.file.dest );
// var files = file.expand(this.file.src);
// log.writeln("Creating zip file " + this.file.dest);
// var fs = require('fs');
// var AdmZip = require('adm-zip');
// var fs = require( "fs" );
// var AdmZip = require( "adm-zip" );
// var zip = new AdmZip();
// files.forEach(function(file) {
// log.verbose.writeln('Zipping ' + file);
// // rewrite file names from dist folder (created by build), drop the /dist part
// zip.addFile(file.replace(/^dist/, ''), fs.readFileSync(file));
// files.forEach(function( file ) {
// log.verbose.writeln( "Zipping " + file );
// // rewrite file names from dist folder (created by build), drop the /dist part
// zip.addFile(file.replace(/^dist/, "" ), fs.readFileSync( file ) );
// });
// zip.writeZip(this.file.dest);
// log.writeln("Wrote " + files.length + " files to " + this.file.dest);
// zip.writeZip( "dist/" + this.file.dest );
// log.writeln( "Wrote " + files.length + " files to " + this.file.dest );
var done = this.async();
var dest = this.file.dest;
var src = template.process( this.file.src, config() );
utils.spawn({

View File

@ -29,7 +29,8 @@
"grunt": "0.2.x",
"sqwish": "0.2.x",
"request": "2.9.x",
"csslint": "0.9.x"
"csslint": "0.9.x",
"adm-zip": "0.1.x"
},
"keywords": []
}