@clerk/dev-cli 1.0.0-snapshot.v20251208202852 → 1.0.0-snapshot.v20251215203425

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@clerk/dev-cli",
3
- "version": "1.0.0-snapshot.v20251208202852",
3
+ "version": "1.0.0-snapshot.v20251215203425",
4
4
  "description": "CLI tool designed to simplify the process of iterating on packages within the clerk/javascript repository",
5
5
  "homepage": "https://clerk.com/",
6
6
  "bugs": {
@@ -22,8 +22,8 @@
22
22
  "commander": "^14.0.1",
23
23
  "concurrently": "^9.2.1",
24
24
  "dotenv": "^17.2.3",
25
- "globby": "^14.1.0",
26
- "jscodeshift": "^17.3.0"
25
+ "jscodeshift": "^17.3.0",
26
+ "tinyglobby": "^0.2.15"
27
27
  },
28
28
  "devDependencies": {},
29
29
  "engines": {
@@ -1,7 +1,7 @@
1
1
  import { readFile } from 'node:fs/promises';
2
2
  import { dirname, posix } from 'node:path';
3
3
 
4
- import { globby } from 'globby';
4
+ import { glob } from 'tinyglobby';
5
5
 
6
6
  import { NULL_ROOT_ERROR } from './errors.js';
7
7
  import { getMonorepoRoot } from './getMonorepoRoot.js';
@@ -17,7 +17,7 @@ export async function getClerkPackages() {
17
17
  }
18
18
  /** @type {Record<string, string>} */
19
19
  const packages = {};
20
- const clerkPackages = await globby([posix.join(monorepoRoot, 'packages', '*', 'package.json'), '!*node_modules*']);
20
+ const clerkPackages = await glob([posix.join(monorepoRoot, 'packages', '*', 'package.json'), '!*node_modules*']);
21
21
  for (const packageJSON of clerkPackages) {
22
22
  const { name } = JSON.parse(await readFile(packageJSON, 'utf-8'));
23
23
  if (name) {