assemble-fs
Advanced tools
Comparing version 0.3.4 to 0.3.5
@@ -111,4 +111,9 @@ /*! | ||
} | ||
return handle(this, 'preWrite') | ||
.pipe(vfs.dest.apply(vfs, arguments)) | ||
var output = utils.combine([ | ||
handle(this, 'preWrite'), | ||
vfs.dest.apply(vfs, arguments), | ||
handle(this, 'postWrite') | ||
]); | ||
output.on('end', output.emit.bind(output, 'finish')); | ||
return output; | ||
}); | ||
@@ -115,0 +120,0 @@ } |
{ | ||
"name": "assemble-fs", | ||
"description": "Assemble plugin to add methods to assemble for working with the file system, like src, dest, copy and symlink.", | ||
"version": "0.3.4", | ||
"version": "0.3.5", | ||
"homepage": "https://github.com/assemble/assemble-fs", | ||
@@ -26,2 +26,3 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)", | ||
"lazy-cache": "^1.0.3", | ||
"stream-combiner": "^0.2.2", | ||
"through2": "^2.0.0", | ||
@@ -34,5 +35,5 @@ "vinyl-fs": "^2.2.1" | ||
"gulp-format-md": "^0.1.4", | ||
"mocha": "^2.3.4", | ||
"mocha": "*", | ||
"rimraf": "^2.5.0", | ||
"should": "^8.0.2", | ||
"should": "*", | ||
"sinon": "^1.17.2", | ||
@@ -51,5 +52,2 @@ "templates": "^0.9.2", | ||
"verb": { | ||
"plugins": [ | ||
"gulp-format-md" | ||
], | ||
"related": { | ||
@@ -59,7 +57,10 @@ "list": [ | ||
"assemble-loader", | ||
"assemble-streams", | ||
"assemble-render-file" | ||
"assemble-render-file", | ||
"assemble-streams" | ||
] | ||
} | ||
}, | ||
"plugins": [ | ||
"gulp-format-md" | ||
] | ||
} | ||
} |
@@ -13,2 +13,3 @@ 'use strict'; | ||
require('through2', 'through'); | ||
require('stream-combiner', 'combine'); | ||
require('vinyl-fs', 'vfs'); | ||
@@ -15,0 +16,0 @@ require = fn; |
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
10859
166
5
+ Addedstream-combiner@^0.2.2
+ Addedduplexer@0.1.2(transitive)
+ Addedstream-combiner@0.2.2(transitive)
+ Addedthrough@2.3.8(transitive)