@clerk/dev-cli 0.0.7 → 0.0.8-snapshot.v7c57a50

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@clerk/dev-cli",
3
3
  "description": "CLI tool designed to simplify the process of iterating on packages within the clerk/javascript repository",
4
- "version": "0.0.7",
4
+ "version": "0.0.8-snapshot.v7c57a50",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "author": "Clerk",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "commander": "^12.1.0",
29
- "concurrently": "^8.2.2",
29
+ "concurrently": "^9.0.1",
30
30
  "dotenv": "^16.4.5",
31
31
  "globby": "^14.0.2",
32
32
  "jscodeshift": "^0.16.1"
@@ -46,7 +46,6 @@ export async function watch({ js }) {
46
46
  };
47
47
 
48
48
  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
50
49
  const { result } = concurrently([clerkJsCommand], { prefixColors: 'auto' });
51
50
  return result;
52
51
  }
@@ -57,7 +56,6 @@ export async function watch({ js }) {
57
56
  commands.push(clerkJsCommand);
58
57
  }
59
58
 
60
- //@ts-expect-error The TypeScript types for the ESM version of concurrently are wrong. https://github.com/open-cli-tools/concurrently/issues/494
61
59
  const { result } = concurrently(commands, { prefixColors: 'auto' });
62
60
  return result;
63
61
  }