Skip to content

Commit 5470748

Browse files
committed
logging
1 parent 15c76da commit 5470748

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration/models/application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ export const application = (config: ApplicationConfig, appDirPath: string, appDi
3333
setup: async (opts?: { strategy?: 'ci' | 'i' | 'copy'; force?: boolean }) => {
3434
const { force } = opts || {};
3535
const nodeModulesExist = await fs.pathExists(path.resolve(appDirPath, 'node_modules'));
36-
console.log({ nodeModulesExist });
3736
if (force || !nodeModulesExist) {
3837
const log = logger.child({ prefix: 'setup' }).info;
3938
await run(scripts.setup, { cwd: appDirPath, log });
39+
await run(`cd node_modules/@clerk/elements && ls`, { cwd: appDirPath, log });
4040
state.completedSetup = true;
4141
}
4242
},

integration/presets/elements.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const nextAppRouter = applicationConfig()
99
.setName('elements-next')
1010
.useTemplate(templates['elements-next'])
1111
.setEnvFormatter('public', key => `NEXT_PUBLIC_${key}`)
12-
.addScript('setup', 'npm i')
12+
.addScript('setup', 'npm i --verbose')
1313
.addScript('dev', 'npm run dev')
1414
.addScript('build', 'npm run build')
1515
.addScript('serve', 'npm run start')

0 commit comments

Comments
 (0)