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) --- node_modules/concurrently/dist/src/index.d.ts | 74 --------------------------- 1 file changed, 74 deletions(-) delete mode 100644 node_modules/concurrently/dist/src/index.d.ts (limited to 'node_modules/concurrently/dist/src/index.d.ts') diff --git a/node_modules/concurrently/dist/src/index.d.ts b/node_modules/concurrently/dist/src/index.d.ts deleted file mode 100644 index 6f4e68b..0000000 --- a/node_modules/concurrently/dist/src/index.d.ts +++ /dev/null @@ -1,74 +0,0 @@ -/// -import { Readable } from 'stream'; -import { CloseEvent, Command, CommandIdentifier, TimerEvent } from './command'; -import { concurrently, ConcurrentlyCommandInput, ConcurrentlyOptions as BaseConcurrentlyOptions, ConcurrentlyResult } from './concurrently'; -import { FlowController } from './flow-control/flow-controller'; -import { InputHandler } from './flow-control/input-handler'; -import { KillOnSignal } from './flow-control/kill-on-signal'; -import { KillOthers, ProcessCloseCondition } from './flow-control/kill-others'; -import { LogError } from './flow-control/log-error'; -import { LogExit } from './flow-control/log-exit'; -import { LogOutput } from './flow-control/log-output'; -import { LogTimings } from './flow-control/log-timings'; -import { RestartProcess } from './flow-control/restart-process'; -import { Logger } from './logger'; -export type ConcurrentlyOptions = BaseConcurrentlyOptions & { - /** - * Which command(s) should have their output hidden. - */ - hide?: CommandIdentifier | CommandIdentifier[]; - /** - * The prefix format to use when logging a command's output. - * Defaults to the command's index. - */ - prefix?: string; - /** - * How many characters should a prefix have at most, used when the prefix format is `command`. - */ - prefixLength?: number; - /** - * Whether output should be formatted to include prefixes and whether "event" logs will be logged. - */ - raw?: boolean; - /** - * Date format used when logging date/time. - * @see https://date-fns.org/v2.0.1/docs/format - */ - timestampFormat?: string; - defaultInputTarget?: CommandIdentifier; - inputStream?: Readable; - handleInput?: boolean; - pauseInputStreamOnFinish?: boolean; - /** - * How much time in milliseconds to wait before restarting a command. - * - * @see RestartProcess - */ - restartDelay?: number; - /** - * How many times commands should be restarted when they exit with a failure. - * - * @see RestartProcess - */ - restartTries?: number; - /** - * Under which condition(s) should other commands be killed when the first one exits. - * - * @see KillOthers - */ - killOthers?: ProcessCloseCondition | ProcessCloseCondition[]; - /** - * Whether to output timing information for processes. - * - * @see LogTimings - */ - timings?: boolean; - /** - * List of additional arguments passed that will get replaced in each command. - * If not defined, no argument replacing will happen. - */ - additionalArguments?: string[]; -}; -declare const _default: (commands: ConcurrentlyCommandInput[], options?: Partial) => ConcurrentlyResult; -export default _default; -export { CloseEvent, Command, CommandIdentifier, concurrently, ConcurrentlyCommandInput, ConcurrentlyResult, FlowController, InputHandler, KillOnSignal, KillOthers, LogError, LogExit, Logger, LogOutput, LogTimings, RestartProcess, TimerEvent, }; -- cgit v1.2.3