We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03bb52f commit a76cdddCopy full SHA for a76cddd
integration/models/application.ts
@@ -48,8 +48,8 @@ export const application = (
48
state.completedSetup = true;
49
// Print all Clerk package versions (direct and transitive)
50
const clerkPackagesLog = logger.child({ prefix: 'clerk-packages' }).info;
51
- clerkPackagesLog('Installed Clerk packages:');
52
- await run('pnpm list "@clerk/*" --depth 100', { cwd: appDirPath, log: clerkPackagesLog });
+ clerkPackagesLog('Installed @clerk/* packages:');
+ await run('pnpm list @clerk/* --depth 100', { cwd: appDirPath, log: clerkPackagesLog });
53
}
54
},
55
dev: async (opts: { port?: number; manualStart?: boolean; detached?: boolean; serverUrl?: string } = {}) => {
0 commit comments