Comparing version 0.2.5 to 0.3.0
@@ -9,4 +9,2 @@ /* | ||
require('futures/forEachAsync'); | ||
var fs = require('fs'), | ||
@@ -16,3 +14,4 @@ path = require('path'), | ||
header = require("./header"), | ||
utils = require("./utils"); | ||
utils = require("./utils"), | ||
forEachAsync = require('futures').forEachAsync; | ||
@@ -154,3 +153,3 @@ function Tar(opt) { | ||
files.forEachAsync(function (next, filename) { | ||
forEachAsync(files, function (next, filename) { | ||
// make sure we get through all cases | ||
@@ -157,0 +156,0 @@ if (error) { |
{ | ||
"name": "tar-async", | ||
"description": "Creates tar files asynchronously in chunks", | ||
"version": "0.2.5", | ||
"version": "0.3.0", | ||
"homepage": "http://github.com/beatgammit/node-tar-async", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -25,3 +25,3 @@ Intro | ||
The only external module that Tar uses is futures, and only the forEachAsync method at that. This module will add to the Array prototype, so any for..in loops will need to be converted to forEach loops. This module is used to allow for graceful handling of asynchronous calls in a forEach loop. | ||
The only external module that Tar uses is futures, and only the forEachAsync method at that. This module is used to allow for graceful handling of asynchronous calls in a forEach loop. | ||
@@ -28,0 +28,0 @@ This module can be installed from npm: |
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
14642