From d55b767039605256c736166a942a9138e3eacfd7 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 29 Jun 2025 11:49:28 -0700 Subject: remove dev node_modules (oops) --- .../concurrently/dist/src/flow-control/log-output.js | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 node_modules/concurrently/dist/src/flow-control/log-output.js (limited to 'node_modules/concurrently/dist/src/flow-control/log-output.js') diff --git a/node_modules/concurrently/dist/src/flow-control/log-output.js b/node_modules/concurrently/dist/src/flow-control/log-output.js deleted file mode 100644 index 486a25b..0000000 --- a/node_modules/concurrently/dist/src/flow-control/log-output.js +++ /dev/null @@ -1,19 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.LogOutput = void 0; -/** - * Logs the stdout and stderr output of commands. - */ -class LogOutput { - constructor({ logger }) { - this.logger = logger; - } - handle(commands) { - commands.forEach((command) => { - command.stdout.subscribe((text) => this.logger.logCommandText(text.toString(), command)); - command.stderr.subscribe((text) => this.logger.logCommandText(text.toString(), command)); - }); - return { commands }; - } -} -exports.LogOutput = LogOutput; -- cgit v1.2.3