Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ It has the following properties:
- `timer`: an RxJS observable to the command's timing events (e.g. starting, stopping).
- `stateChange`: an RxJS observable for changes to the command's `state` property.
- `messages`: an object with the following properties:

- `incoming`: an RxJS observable for the IPC messages received from the underlying process.
- `outgoing`: an RxJS observable for the IPC messages sent to the underlying process.

Expand Down
4 changes: 2 additions & 2 deletions bin/concurrently.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ concurrently(
killOthersOn: args.killOthers
? ['success', 'failure']
: args.killOthersOnFail
? ['failure']
: [],
? ['failure']
: [],
killSignal: args.killSignal,
killTimeout: args.killTimeout,
maxProcesses: args.maxProcesses,
Expand Down
16 changes: 8 additions & 8 deletions docs/cli/passthrough-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ For example, imagine you have in your `package.json` file scripts like this:
"scripts": {
"build:client": "tsc -p client",
"build:server": "tsc -p server",
"build": "concurrently npm:build:client npm:build:server"
}
"build": "concurrently npm:build:client npm:build:server",
},
}
```

Expand All @@ -37,8 +37,8 @@ a 1-indexed `{number}` placeholder to the command you want it to apply to:
"scripts": {
// ...
"build": "concurrently -P 'npm:build:client -- {1}' npm:build:server --",
"typecheck": "npm run build -- --noEmit"
}
"typecheck": "npm run build -- --noEmit",
},
}
```

Expand All @@ -55,8 +55,8 @@ to your commands. This can be done with the `{@}` placeholder.
"scripts": {
// ...
"build": "concurrently -P 'npm:build:client -- {@}' 'npm:build:server -- {@}' --",
"typecheck": "npm run build -- --watch --noEmit"
}
"typecheck": "npm run build -- --watch --noEmit",
},
}
```

Expand All @@ -72,8 +72,8 @@ which wraps the arguments in quotes.
// ...
"scripts": {
// ...
"build": "concurrently -P 'npm:build:client -- --outDir {*}/client' 'npm:build:server -- --outDir {*}/server' -- $(date)"
}
"build": "concurrently -P 'npm:build:client -- --outDir {*}/client' 'npm:build:server -- --outDir {*}/server' -- $(date)",
},
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/cli/shortcuts.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ For example, given the following `package.json` contents:
"lint:js": "...",
"lint:ts": "...",
"lint:fix:js": "...",
"lint:fix:ts": "..."
"lint:fix:ts": "...",
// ...
}
},
// ...
}
```
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@
"author": "Kimmo Brunfeldt",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"rxjs": "^7.8.1",
"shell-quote": "^1.8.1",
"supports-color": "^8.1.1",
"tree-kill": "^1.2.2",
"yargs": "^17.7.2"
"chalk": "4.1.2",
"rxjs": "7.8.2",
"shell-quote": "1.8.1",
"supports-color": "8.1.1",
"tree-kill": "1.2.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@hirez_io/observer-spy": "^2.2.0",
"@types/node": "^18.19.50",
"@types/node": "^18.19.123",
"@types/shell-quote": "^1.7.5",
"@types/supports-color": "^8.1.3",
"@types/yargs": "^17.0.33",
Expand All @@ -74,19 +74,19 @@
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.4",
"coveralls-next": "^5.0.0",
"ctrlc-wrapper": "^0.0.4",
"esbuild": "~0.25.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"ctrlc-wrapper": "^0.0.5",
"esbuild": "~0.25.9",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"safe-publish-latest": "^2.0.0",
"string-argv": "^0.3.2",
"typescript": "~5.2.2",
"typescript": "~5.8.3",
"vitest": "^3.2.4"
},
"files": [
Expand Down
Loading
Loading