diff --git a/packages/ionic/src/lib/project/angular/generate.ts b/packages/ionic/src/lib/project/angular/generate.ts index 20123e49d1..e5d229c07a 100644 --- a/packages/ionic/src/lib/project/angular/generate.ts +++ b/packages/ionic/src/lib/project/angular/generate.ts @@ -145,7 +145,7 @@ To test a generator before file modifications are made, use the ${input('--dry-r private async generateComponent(type: string, name: string, options: { [key: string]: string | boolean; }) { const ngArgs = unparseArgs({ _: ['generate', type, name], ...options }, {}); - const shellOptions = { cwd: this.e.ctx.execPath }; + const shellOptions = { cwd: this.e.ctx.execPath, stdio: 'inherit' }; await this.e.shell.run('ng', ngArgs, shellOptions); }