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.
2 parents b8a1a29 + 73e9935 commit 17eda48Copy full SHA for 17eda48
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