1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00
metamask-extension/.yarn/patches/watchify-npm-4.0.0-4fd965dd49.patch
Brad Decker 6d1170f06c
upgrade yarn to version 3 (#16232)
Co-authored-by: Mark Stacey <markjstacey@gmail.com>
Co-authored-by: ricky <ricky.miller@gmail.com>
Co-authored-by: Elliot Winkler <elliot.winkler@gmail.com>
Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
Co-authored-by: legobt <6wbvkn0j@anonaddy.me>
Co-authored-by: Pedro Figueiredo <pedro.figueiredo@consensys.net>
2022-12-08 10:38:04 -06:00

39 lines
1.1 KiB
Diff

diff --git a/index.js b/index.js
index 0753b9f13d9972c5e79be38dd3e686fbbb23627c..05efb1b1ea52a5e9621a46ad7e2097ee486431d8 100644
--- a/index.js
+++ b/index.js
@@ -58,33 +58,6 @@ function watchify (b, opts) {
if (pkgcache) pkgcache[file] = pkg;
});
- b.on('reset', reset);
- reset();
-
- function reset () {
- var time = null;
- var bytes = 0;
- b.pipeline.get('record').on('end', function () {
- time = Date.now();
- });
-
- b.pipeline.get('wrap').push(through(write, end));
- function write (buf, enc, next) {
- bytes += buf.length;
- this.push(buf);
- next();
- }
- function end () {
- var delta = Date.now() - time;
- b.emit('time', delta);
- b.emit('bytes', bytes);
- b.emit('log', bytes + ' bytes written ('
- + (delta / 1000).toFixed(2) + ' seconds)'
- );
- this.push(null);
- }
- }
-
var fwatchers = {};
var fwatcherFiles = {};
var ignoredFiles = {};