We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8a1a29 commit 73e9935Copy full SHA for 73e9935
index.js
@@ -27,7 +27,7 @@ module.exports = function gulpJavaScriptObfuscator(options) {
27
contents: new Buffer(obfuscationResult.getSourceMap())
28
}))
29
}
30
- cb();
+ cb(null, file);
31
32
catch (err) {
33
throw new PluginError('gulp-javascript-obfuscator', err);
@@ -36,4 +36,4 @@ module.exports = function gulpJavaScriptObfuscator(options) {
36
throw new PluginError('gulp-javascript-obfuscator', 'Streams are not supported!');
37
38
});
39
-};
+};
0 commit comments