Socket
Socket
Sign inDemoInstall

concurrently

Package Overview
Dependencies
Maintainers
2
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

concurrently - npm Package Compare versions

Comparing version 8.0.1 to 8.1.0

1

dist/src/command-parser/expand-arguments.d.ts

@@ -15,3 +15,4 @@ import { CommandInfo } from '../command';

prefixColor?: string | undefined;
raw?: boolean | undefined;
};
}

@@ -13,3 +13,4 @@ import { CommandInfo } from '../command';

prefixColor?: string | undefined;
raw?: boolean | undefined;
};
}

@@ -33,2 +33,6 @@ /// <reference types="node" />

prefixColor?: string;
/**
* Output command in raw format.
*/
raw?: boolean;
}

@@ -35,0 +39,0 @@ export interface CloseEvent {

@@ -56,3 +56,3 @@ "use strict";

}, (0, get_spawn_opts_1.getSpawnOpts)({
raw: options.raw,
raw: command.raw ?? options.raw,
env: command.env,

@@ -112,2 +112,7 @@ cwd: command.cwd || options.cwd,

: {}),
...(command.raw !== undefined
? {
raw: command.raw,
}
: {}),
};

@@ -114,0 +119,0 @@ }

6

package.json
{
"name": "concurrently",
"version": "8.0.1",
"version": "8.1.0",
"description": "Run commands concurrently",

@@ -17,6 +17,6 @@ "main": "index.js",

".": {
"types": "./dist/src/index.d.ts",
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js",
"types": "./dist/src/index.d.ts"
"default": "./index.js"
},

@@ -23,0 +23,0 @@ "./package.json": "./package.json"

@@ -343,3 +343,3 @@ # concurrently

- `raw`: whether raw mode should be used, meaning strictly process output will
be logged, without any prefixes, coloring or extra stuff.
be logged, without any prefixes, coloring or extra stuff. Can be overriden per command.
- `successCondition`: the condition to consider the run was successful.

@@ -346,0 +346,0 @@ If `first`, only the first process to exit will make up the success of the run; if `last`, the last process that exits will determine whether the run succeeds.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc