Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

assemble-fs

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

assemble-fs - npm Package Compare versions

Comparing version 0.4.1 to 0.4.2

11

index.js

@@ -32,3 +32,7 @@ /*!

// assume none of the handlers exist if `onStream` does not exist
/**
* Setup middleware handlers. Assume none of the handlers exist if `onStream`
* does not exist.
*/
if (typeof app.handler === 'function' && typeof app.onStream !== 'function') {

@@ -58,4 +62,5 @@ app.handler('onStream');

app.mixin('copy', function(patterns, dest, options) {
return this.src(patterns, options)
.pipe(this.dest(dest, options))
var opts = utils.extend({ allowEmpty: true }, options);
return utils.vfs.src(patterns, opts)
.pipe(utils.vfs.dest(dest, opts))
});

@@ -62,0 +67,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.4.1",
"version": "0.4.2",
"homepage": "https://github.com/assemble/assemble-fs",

@@ -6,0 +6,0 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc