Skip to content

Commit

Permalink
[engsys] upgrade dependency concurrently version to ^8.2.0 (Azure…
Browse files Browse the repository at this point in the history
…#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.
  • Loading branch information
jeremymeng authored Aug 7, 2023
1 parent 31cf443 commit 1177c61
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 32 deletions.
39 changes: 12 additions & 27 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/tools/dev-tool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@_ts/min": "npm:typescript@~4.2.4",
"@_ts/max": "npm:typescript@latest",
"axios": "^1.2.1",
"concurrently": "^7.6.0",
"concurrently": "^8.2.0",
"chalk": "~4.1.1",
"decompress": "^4.2.1",
"dotenv": "^16.0.0",
Expand Down
4 changes: 2 additions & 2 deletions common/tools/dev-tool/src/util/samples/convert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ function postTransform(outText: string): string {

// Format first so that we can write matching regexps
// that are humanly comprehensible
text = format(text);
text = format(text, "babel");

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

// Format once more for the final output.
return format(text);
return format(text, "babel");
}

/**
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/perf-tests/core-rest-pipeline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"devDependencies": {
"@types/node": "^16.0.0",
"@types/express": "^4.17.13",
"concurrently": "^6.2.1",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"express": "^4.17.3",
"eslint": "^8.0.0",
Expand Down
2 changes: 1 addition & 1 deletion sdk/test-utils/recorder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"@types/node": "^14.0.0",
"@types/uuid": "^8.3.1",
"chai": "^4.2.0",
"concurrently": "^7.1.0",
"concurrently": "^8.2.0",
"cross-env": "7.0.3",
"dotenv": "^16.0.0",
"eslint": "^8.0.0",
Expand Down

0 comments on commit 1177c61

Please sign in to comment.