concurrently 7.2.0 → 7.3.0
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.
- package/README.md +82 -67
- package/dist/bin/concurrently.js +16 -10
- package/dist/bin/epilogue.js +16 -15
- package/dist/src/command-parser/expand-arguments.d.ts +5 -1
- package/dist/src/command-parser/expand-arguments.js +3 -5
- package/dist/src/command-parser/expand-npm-shortcut.js +3 -3
- package/dist/src/command-parser/expand-npm-wildcard.js +11 -27
- package/dist/src/command-parser/strip-quotes.d.ts +5 -1
- package/dist/src/command-parser/strip-quotes.js +2 -3
- package/dist/src/command.d.ts +5 -2
- package/dist/src/command.js +6 -3
- package/dist/src/completion-listener.d.ts +2 -2
- package/dist/src/completion-listener.js +16 -16
- package/dist/src/concurrently.js +13 -10
- package/dist/src/flow-control/input-handler.d.ts +1 -1
- package/dist/src/flow-control/input-handler.js +8 -5
- package/dist/src/flow-control/kill-on-signal.js +1 -2
- package/dist/src/flow-control/kill-others.d.ts +1 -1
- package/dist/src/flow-control/kill-others.js +2 -4
- package/dist/src/flow-control/log-error.js +1 -2
- package/dist/src/flow-control/log-exit.js +0 -1
- package/dist/src/flow-control/log-output.js +0 -1
- package/dist/src/flow-control/log-timings.d.ts +3 -3
- package/dist/src/flow-control/log-timings.js +12 -12
- package/dist/src/flow-control/restart-process.d.ts +1 -1
- package/dist/src/flow-control/restart-process.js +9 -4
- package/dist/src/get-spawn-opts.d.ts +4 -1
- package/dist/src/get-spawn-opts.js +9 -2
- package/dist/src/logger.d.ts +2 -2
- package/dist/src/logger.js +13 -10
- package/dist/src/output-writer.d.ts +1 -1
- package/dist/src/output-writer.js +7 -5
- package/index.js +1 -0
- package/package.json +30 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "concurrently",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"description": "Run commands concurrently",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -12,15 +12,22 @@
|
|
|
12
12
|
"node": "^12.20.0 || ^14.13.0 || >=16.0.0"
|
|
13
13
|
},
|
|
14
14
|
"exports": {
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./index.mjs",
|
|
17
|
+
"require": "./index.js",
|
|
18
|
+
"default": "./index.js",
|
|
19
|
+
"types": "./dist/src/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./package.json": "./package.json"
|
|
18
22
|
},
|
|
19
23
|
"scripts": {
|
|
20
24
|
"build": "tsc --build",
|
|
21
25
|
"postbuild": "chmod +x dist/bin/concurrently.js",
|
|
22
26
|
"clean": "tsc --build --clean",
|
|
27
|
+
"format": "prettier --ignore-path .gitignore --check '**/{!(package-lock).json,*.y?(a)ml,*.md}'",
|
|
28
|
+
"format:fix": "npm run format -- --write",
|
|
23
29
|
"lint": "eslint . --ext js,ts --ignore-path .gitignore",
|
|
30
|
+
"lint:fix": "npm run lint -- --fix",
|
|
24
31
|
"prepublishOnly": "npm run build",
|
|
25
32
|
"report-coverage": "cat coverage/lcov.info | coveralls",
|
|
26
33
|
"test": "jest"
|
|
@@ -43,7 +50,7 @@
|
|
|
43
50
|
"chalk": "^4.1.0",
|
|
44
51
|
"date-fns": "^2.16.1",
|
|
45
52
|
"lodash": "^4.17.21",
|
|
46
|
-
"rxjs": "^
|
|
53
|
+
"rxjs": "^7.0.0",
|
|
47
54
|
"shell-quote": "^1.7.3",
|
|
48
55
|
"spawn-command": "^0.0.2-1",
|
|
49
56
|
"supports-color": "^8.1.0",
|
|
@@ -51,6 +58,9 @@
|
|
|
51
58
|
"yargs": "^17.3.1"
|
|
52
59
|
},
|
|
53
60
|
"devDependencies": {
|
|
61
|
+
"@swc-node/register": "^1.5.1",
|
|
62
|
+
"@swc/core": "^1.2.204",
|
|
63
|
+
"@swc/jest": "^0.2.21",
|
|
54
64
|
"@types/jest": "^27.0.3",
|
|
55
65
|
"@types/lodash": "^4.14.178",
|
|
56
66
|
"@types/node": "^17.0.0",
|
|
@@ -59,12 +69,15 @@
|
|
|
59
69
|
"@types/yargs": "^17.0.8",
|
|
60
70
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
61
71
|
"@typescript-eslint/parser": "^5.8.1",
|
|
62
|
-
"coveralls": "^
|
|
63
|
-
"eslint": "^
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
72
|
+
"coveralls-next": "^4.1.2",
|
|
73
|
+
"eslint": "^8.15.0",
|
|
74
|
+
"eslint-config-prettier": "^8.5.0",
|
|
75
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
76
|
+
"jest": "^27.5.1",
|
|
77
|
+
"jest-create-mock-instance": "^2.0.0",
|
|
78
|
+
"lint-staged": "^12.4.1",
|
|
79
|
+
"prettier": "^2.6.2",
|
|
80
|
+
"simple-git-hooks": "^2.7.0",
|
|
68
81
|
"typescript": "^4.5.4"
|
|
69
82
|
},
|
|
70
83
|
"files": [
|
|
@@ -75,21 +88,11 @@
|
|
|
75
88
|
"!**/*.spec.js",
|
|
76
89
|
"!**/*.spec.d.ts"
|
|
77
90
|
],
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
],
|
|
85
|
-
"coveragePathIgnorePatterns": [
|
|
86
|
-
"/fixtures/",
|
|
87
|
-
"/node_modules/"
|
|
88
|
-
],
|
|
89
|
-
"testEnvironment": "node",
|
|
90
|
-
"testPathIgnorePatterns": [
|
|
91
|
-
"/node_modules/",
|
|
92
|
-
"/dist"
|
|
93
|
-
]
|
|
91
|
+
"simple-git-hooks": {
|
|
92
|
+
"pre-commit": "npx lint-staged"
|
|
93
|
+
},
|
|
94
|
+
"lint-staged": {
|
|
95
|
+
"*.{js,ts}": "eslint --fix",
|
|
96
|
+
"{!(package-lock).json,*.y?(a)ml,*.md}": "prettier --write"
|
|
94
97
|
}
|
|
95
98
|
}
|