Skip to content

Commit 3090615

Browse files
committed
feat(build): show build progress
Along with this, make sure your Angular build options in `angular.json` have `"progress": true`, which will emit build progress from the Angular CLI. resolves #3750 fixes #3721
1 parent 3f84a6f commit 3090615

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ionic/src/lib/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export abstract class BuildCLI<T extends object> {
175175
const args = await this.buildArgs(options);
176176

177177
try {
178-
await this.e.shell.run(this.resolvedProgram, args, { cwd: this.e.project.directory, fatalOnNotFound: false });
178+
await this.e.shell.run(this.resolvedProgram, args, { stdio: 'inherit', cwd: this.e.project.directory, fatalOnNotFound: false });
179179
} catch (e) {
180180
if (e instanceof ShellCommandError && e.code === ERROR_SHELL_COMMAND_NOT_FOUND) {
181181
throw new BuildCLIProgramNotFoundException(`${chalk.bold(this.resolvedProgram)} command not found.`);

0 commit comments

Comments
 (0)