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

broccoli-funnel

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-funnel - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

4

CHANGELOG.md
# master
# 1.0.3
* update fs-tree-diff, fixes "rename only file in directory bug", possible performance improvements.
# 1.0.2

@@ -4,0 +8,0 @@

15

index.js

@@ -208,3 +208,3 @@ 'use strict';

Funnel.prototype._processPaths = function(paths, outputToInputMappings) {
Funnel.prototype._processPaths = function(paths) {
return paths.

@@ -227,3 +227,3 @@ slice(0).

// clone to be compatible with walkSync
nextTree = FSTree.fromPaths(this._processPaths(this.files));
nextTree = FSTree.fromPaths(this._processPaths(this.files), { sortAndExpand: true });
} else {

@@ -238,5 +238,3 @@ var entries;

nextTree = new FSTree({
entries: this._processEntries(entries)
});
nextTree = FSTree.fromEntries(this._processEntries(entries), { sortAndExpand: true });
}

@@ -282,6 +280,2 @@

if (operation === 'change') {
operation = 'create';
}
switch (operation) {

@@ -297,3 +291,4 @@ case 'unlink' :

break;
case 'create'/* also change */ :
case 'change':
case 'create':
var relativePath = outputToInput[outputRelative];

@@ -300,0 +295,0 @@ if (relativePath === undefined) {

{
"name": "broccoli-funnel",
"version": "1.0.2",
"version": "1.0.3",
"description": "Broccoli plugin that allows you to filter files selected from an input node down based on regular expressions.",

@@ -26,3 +26,3 @@ "main": "index.js",

"fast-ordered-set": "^1.0.0",
"fs-tree-diff": "^0.3.0",
"fs-tree-diff": "^0.5.0",
"minimatch": "^3.0.0",

@@ -29,0 +29,0 @@ "mkdirp": "^0.5.0",

@@ -741,7 +741,7 @@ 'use strict';

expect(walkSync(outputPath)).to.eql([
'utility.js',
'utility/',
'utility/utils.js',
'utility/utils/',
'utility/utils/foo.js',
'utility/utils.js',
'utility.js'
]);

@@ -748,0 +748,0 @@ });

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