Skip to content

Commit

Permalink
ci(test): test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jogelin committed Dec 13, 2024
1 parent 77697e1 commit 87d774d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function runGenerator(generator: string, options: GeneratorOptions) {
title: `Apply generator ${generator} on project ${options['name']}`,
bodyLines: [generatorCmd],
});
execSync(generatorCmd, { stdio: 'inherit' });
execSync(generatorCmd, { stdio: 'pipe' });
}

function normalizeOptions(options: ProjectTypeGeneratorExtraSchema): ProjectTypeGeneratorExtraSchema {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-huge-nx/bin/create-huge-nx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async function main(parsedArgs: yargs.Arguments<Arguments>) {
bodyLines: [createNxWorkspaceCmd],
});

execSync(createNxWorkspaceCmd, { stdio: 'pipe', env: { ...process.env, NX_DAEMON: 'false' } });
execSync(createNxWorkspaceCmd, { stdio: 'pipe', env: { NX_DAEMON: 'false' } });

output.log({
title: `Successfully applied preset: ${parsedArgs['preset']}`,
Expand Down

0 comments on commit 87d774d

Please sign in to comment.