mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
6d1170f06c
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>
39 lines
1.1 KiB
Diff
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 = {};
|