gulp-decompress
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -33,6 +33,7 @@ 'use strict'; | ||
stat.mtime = x.mtime; | ||
stat.isDirectory = () => x.type === 'directory'; | ||
this.push(new gutil.File({ | ||
stat, | ||
contents: x.data, | ||
contents: stat.isDirectory() ? null : x.data, | ||
path: x.path | ||
@@ -39,0 +40,0 @@ })); |
{ | ||
"name": "gulp-decompress", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Extract TAR, TAR.BZ2, TAR.GZ and ZIP archives", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
3750
41