Skip to content

Commit a76cddd

Browse files
committed
feat(e2e): fix clerk pkg logging
1 parent 03bb52f commit a76cddd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/models/application.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ export const application = (
4848
state.completedSetup = true;
4949
// Print all Clerk package versions (direct and transitive)
5050
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 });
51+
clerkPackagesLog('Installed @clerk/* packages:');
52+
await run('pnpm list @clerk/* --depth 100', { cwd: appDirPath, log: clerkPackagesLog });
5353
}
5454
},
5555
dev: async (opts: { port?: number; manualStart?: boolean; detached?: boolean; serverUrl?: string } = {}) => {

0 commit comments

Comments
 (0)