grunt-contrib-compress
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -7,3 +7,2 @@ /* | ||
* Licensed under the MIT license. | ||
* https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT | ||
*/ | ||
@@ -10,0 +9,0 @@ |
{ | ||
"name": "grunt-contrib-compress", | ||
"description": "Compress files and folders.", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"homepage": "https://github.com/gruntjs/grunt-contrib-compress", | ||
"author": { | ||
"name": "Chris Talkington", | ||
"url": "http://christalkington.com/" | ||
"name": "Grunt Team", | ||
"url": "http://gruntjs.com/" | ||
}, | ||
@@ -33,3 +33,3 @@ "repository": { | ||
"fstream": "~0.1.18", | ||
"zipstream-ctalkington": "~0.3.0", | ||
"archiver": "~0.1.0", | ||
"rimraf": "~2.0.2", | ||
@@ -36,0 +36,0 @@ "grunt-contrib-lib": "~0.3.0" |
# grunt-contrib-compress [![Build Status](https://secure.travis-ci.org/gruntjs/grunt-contrib-compress.png?branch=master)](http://travis-ci.org/gruntjs/grunt-contrib-compress) | ||
> Compress files and folders (part of the [grunt-contrib](https://github.com/gruntjs/grunt-contrib) collection). Submitted by [Chris Talkington](https://github.com/ctalkington). | ||
> Compress files and folders. | ||
## Getting Started | ||
@@ -13,4 +14,4 @@ Install this grunt plugin next to your project's [grunt.js gruntfile][getting_started] with: `npm install grunt-contrib-compress` | ||
[grunt]: https://github.com/cowboy/grunt | ||
[getting_started]: https://github.com/cowboy/grunt/blob/master/docs/getting_started.md | ||
[grunt]: https://github.com/gruntjs/grunt | ||
[getting_started]: https://github.com/gruntjs/grunt/blob/master/docs/getting_started.md | ||
@@ -27,3 +28,3 @@ ### Overview | ||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/cowboy/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)). | ||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/gruntjs/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)). | ||
@@ -78,6 +79,4 @@ ##### options ```object``` | ||
## Release History | ||
-- | ||
* 2012/09/24 - v0.3.0 - general cleanup and consolidation. global options depreciated. | ||
* 2012/09/18 - v0.2.2 - test refactoring. no valid source check. automatic mode detection. | ||
* 2012/09/10 - v0.2.0 - refactored from grunt-contrib into individual repo. | ||
*Task submitted by [Chris Talkington](https://github.com/ctalkington).* |
@@ -7,3 +7,2 @@ /* | ||
* Licensed under the MIT license. | ||
* https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT | ||
*/ | ||
@@ -154,3 +153,3 @@ | ||
zip: function(srcFiles, dest, options, callback) { | ||
var zip = require('zipstream-ctalkington').createZip(options); | ||
var zip = require('archiver').createZip(options); | ||
@@ -157,0 +156,0 @@ var destDir = path.dirname(dest); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55380
31
370
79
+ Addedarchiver@~0.1.0
+ Addedarchiver@0.1.1(transitive)
- Removedzipstream-ctalkington@~0.3.0