concurrently 8.0.0 → 8.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,13 @@
1
1
  import { CloseEvent, Command } from '../command';
2
2
  import { Logger } from '../logger';
3
3
  import { FlowController } from './flow-controller';
4
- interface TimingInfo {
4
+ type TimingInfo = {
5
5
  name: string;
6
6
  duration: string;
7
7
  'exit code': string | number;
8
8
  killed: boolean;
9
9
  command: string;
10
- }
10
+ };
11
11
  /**
12
12
  * Logs timing information about commands as they start/stop and then a summary when all commands finish.
13
13
  */
@@ -66,7 +66,7 @@ export declare class Logger {
66
66
  *
67
67
  * Each row is a single input item, and they are presented in the input order.
68
68
  */
69
- logTable(tableContents: unknown[]): void;
69
+ logTable(tableContents: Record<string, unknown>[]): void;
70
70
  log(prefix: string, text: string, command?: Command): void;
71
71
  emit(command: Command | undefined, text: string): void;
72
72
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "concurrently",
3
- "version": "8.0.0",
3
+ "version": "8.0.1",
4
4
  "description": "Run commands concurrently",
5
5
  "main": "index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -41,41 +41,41 @@
41
41
  "date-fns": "^2.29.3",
42
42
  "lodash": "^4.17.21",
43
43
  "rxjs": "^7.8.0",
44
- "shell-quote": "^1.7.4",
44
+ "shell-quote": "^1.8.0",
45
45
  "spawn-command": "0.0.2-1",
46
46
  "supports-color": "^8.1.1",
47
47
  "tree-kill": "^1.2.2",
48
- "yargs": "^17.6.2"
48
+ "yargs": "^17.7.1"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@hirez_io/observer-spy": "^2.2.0",
52
- "@swc/core": "^1.3.24",
52
+ "@swc/core": "^1.3.42",
53
53
  "@swc/jest": "^0.2.24",
54
- "@types/jest": "^29.2.5",
55
- "@types/lodash": "^4.14.191",
56
- "@types/node": "^14.18.36",
54
+ "@types/jest": "^29.5.0",
55
+ "@types/lodash": "^4.14.192",
56
+ "@types/node": "^14.18.42",
57
57
  "@types/shell-quote": "^1.7.1",
58
58
  "@types/supports-color": "^8.1.1",
59
- "@types/yargs": "^17.0.18",
60
- "@typescript-eslint/eslint-plugin": "^5.48.0",
61
- "@typescript-eslint/parser": "^5.48.0",
59
+ "@types/yargs": "^17.0.24",
60
+ "@typescript-eslint/eslint-plugin": "^5.57.0",
61
+ "@typescript-eslint/parser": "^5.57.0",
62
62
  "coveralls-next": "^4.2.0",
63
63
  "ctrlc-wrapper": "^0.0.4",
64
- "esbuild": "^0.16.13",
65
- "eslint": "^8.31.0",
66
- "eslint-config-prettier": "^8.6.0",
67
- "eslint-plugin-import": "^2.26.0",
68
- "eslint-plugin-jest": "^27.2.0",
64
+ "esbuild": "~0.17.14",
65
+ "eslint": "^8.37.0",
66
+ "eslint-config-prettier": "^8.8.0",
67
+ "eslint-plugin-import": "^2.27.5",
68
+ "eslint-plugin-jest": "^27.2.1",
69
69
  "eslint-plugin-prettier": "^4.2.1",
70
- "eslint-plugin-simple-import-sort": "^8.0.0",
70
+ "eslint-plugin-simple-import-sort": "^10.0.0",
71
71
  "husky": "^8.0.3",
72
- "jest": "^29.3.1",
72
+ "jest": "^29.5.0",
73
73
  "jest-create-mock-instance": "^2.0.0",
74
- "lint-staged": "^13.1.0",
75
- "prettier": "^2.8.1",
74
+ "lint-staged": "^13.2.0",
75
+ "prettier": "^2.8.7",
76
76
  "safe-publish-latest": "^2.0.0",
77
77
  "string-argv": "^0.3.1",
78
- "typescript": "~4.9.4"
78
+ "typescript": "~5.0.2"
79
79
  },
80
80
  "files": [
81
81
  "dist",