gulp-vinyl-zip
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -26,2 +26,8 @@ 'use strict'; | ||
} else if (file.isDirectory()) { | ||
// In Windows, directories have a 666 permissions. This doesn't go well | ||
// on OS X and Linux, where directories are expected to be 755. | ||
if (/win32/.test(process.platform)) { | ||
opts.mode = 16877; | ||
} | ||
zip.addEmptyDirectory(path, opts); | ||
@@ -28,0 +34,0 @@ } else if (file.isBuffer()) { |
{ | ||
"name": "gulp-vinyl-zip", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Streaming vinyl adapter for zip archives", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
13269
315