Skip to content

Commit 1177c61

Browse files
authored
[engsys] upgrade dependency concurrently version to ^8.2.0 (Azure#26717)
while at it, also fixed warnings from `prettier` regarding missing parser argument when formatting JavaScript code. the only breaking change in v8 is dropping NodeJS v12 support, which doesn't impact us.
1 parent 31cf443 commit 1177c61

File tree

5 files changed

+17
-32
lines changed

5 files changed

+17
-32
lines changed

common/config/rush/pnpm-lock.yaml

Lines changed: 12 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/tools/dev-tool/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@_ts/min": "npm:typescript@~4.2.4",
4545
"@_ts/max": "npm:typescript@latest",
4646
"axios": "^1.2.1",
47-
"concurrently": "^7.6.0",
47+
"concurrently": "^8.2.0",
4848
"chalk": "~4.1.1",
4949
"decompress": "^4.2.1",
5050
"dotenv": "^16.0.0",

common/tools/dev-tool/src/util/samples/convert.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ function postTransform(outText: string): string {
4747

4848
// Format first so that we can write matching regexps
4949
// that are humanly comprehensible
50-
text = format(text);
50+
text = format(text, "babel");
5151

5252
for (const [rx, replacement] of REGEX_STACK) {
5353
const match = typeof rx === "function" ? rx() : rx;
5454
text = text.replace(match, replacement);
5555
}
5656

5757
// Format once more for the final output.
58-
return format(text);
58+
return format(text, "babel");
5959
}
6060

6161
/**

sdk/core/perf-tests/core-rest-pipeline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"devDependencies": {
1818
"@types/node": "^16.0.0",
1919
"@types/express": "^4.17.13",
20-
"concurrently": "^6.2.1",
20+
"concurrently": "^8.2.0",
2121
"cross-env": "^7.0.3",
2222
"express": "^4.17.3",
2323
"eslint": "^8.0.0",

sdk/test-utils/recorder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"@types/node": "^14.0.0",
8282
"@types/uuid": "^8.3.1",
8383
"chai": "^4.2.0",
84-
"concurrently": "^7.1.0",
84+
"concurrently": "^8.2.0",
8585
"cross-env": "7.0.3",
8686
"dotenv": "^16.0.0",
8787
"eslint": "^8.0.0",

0 commit comments

Comments
 (0)