Skip to content

Commit eb82eb0

Browse files
authored
chore(dev-cli): Update to latest concurrently (clerk#4175)
1 parent c7faf61 commit eb82eb0

4 files changed

Lines changed: 72 additions & 20 deletions

File tree

.changeset/friendly-bottles-sin.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@clerk/dev-cli": patch
3+
---
4+
5+
Update dependencies (`concurrently@9.0.1`)

package-lock.json

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

packages/dev-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"commander": "^12.1.0",
29-
"concurrently": "^8.2.2",
29+
"concurrently": "^9.0.1",
3030
"dotenv": "^16.4.5",
3131
"globby": "^14.0.2",
3232
"jscodeshift": "^0.16.1"

packages/dev-cli/src/commands/watch.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export async function watch({ js }) {
4646
};
4747

4848
if (js) {
49-
//@ts-expect-error The TypeScript types for the ESM version of concurrently are wrong. https://github.com/open-cli-tools/concurrently/issues/494
5049
const { result } = concurrently([clerkJsCommand], { prefixColors: 'auto' });
5150
return result;
5251
}
@@ -57,7 +56,6 @@ export async function watch({ js }) {
5756
commands.push(clerkJsCommand);
5857
}
5958

60-
//@ts-expect-error The TypeScript types for the ESM version of concurrently are wrong. https://github.com/open-cli-tools/concurrently/issues/494
6159
const { result } = concurrently(commands, { prefixColors: 'auto' });
6260
return result;
6361
}

0 commit comments

Comments
 (0)