You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

gulp-revert-path

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-revert-path - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+7
-2
index.js

@@ -6,6 +6,11 @@ 'use strict';

return through.obj(function (file, enc, cb) {
file.history.pop();
file.path = file.history.pop();
var history = file.history;
if (history.length > 1) {
history.pop();
file.path = history[history.length - 1];
}
cb(null, file);
});
};
{
"name": "gulp-revert-path",
"version": "1.0.0",
"version": "1.0.1",
"description": "Revert the previous `file.path` change",

@@ -5,0 +5,0 @@ "license": "MIT",