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 ae3fa0e commit 21ff6ecCopy full SHA for 21ff6ec
integration/models/application.ts
@@ -46,6 +46,10 @@ export const application = (
46
const log = logger.child({ prefix: 'setup' }).info;
47
await run(scripts.setup, { cwd: appDirPath, log });
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 });
53
}
54
},
55
dev: async (opts: { port?: number; manualStart?: boolean; detached?: boolean; serverUrl?: string } = {}) => {
0 commit comments