Skip to content

Commit 21ff6ec

Browse files
committed
feat(e2e): log installed Clerk package versions after setup
1 parent ae3fa0e commit 21ff6ec

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

integration/models/application.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ export const application = (
4646
const log = logger.child({ prefix: 'setup' }).info;
4747
await run(scripts.setup, { cwd: appDirPath, log });
4848
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 });
4953
}
5054
},
5155
dev: async (opts: { port?: number; manualStart?: boolean; detached?: boolean; serverUrl?: string } = {}) => {

0 commit comments

Comments
 (0)