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 243e49f commit 1ccaf4dCopy full SHA for 1ccaf4d
cli/commands/create.js
@@ -187,7 +187,8 @@ export class CreateCommand {
187
}
188
if (cli.argv.alloy !== undefined || useAlloy) {
189
try {
190
- execSync(`alloy new "${path.join(cli.argv['workspace-dir'], cli.argv.name)}"`, { stdio: 'ignore' });
+ const output = execSync(`alloy new "${path.join(cli.argv['workspace-dir'], cli.argv.name)}"`, { encoding: 'utf8' });
191
+ (output?.trim() || '').split('\n').forEach(line => logger.info(line));
192
} catch (_alloyError) {
193
logger.error('Alloy is not installed. Run "npm i -g alloy" to install it, then run "alloy new" inside the project folder.');
194
0 commit comments