angular/aio/tools/cli-patches/bazel-architect-output.patch
Derek Cormier 076c932497 build(bazel): patch architect to not clear output
Otherwise a failed build requires looking in the command log for the
error.
2022-11-22 13:51:16 -07:00

13 lines
782 B
Diff

diff --git node_modules/@angular-devkit/architect-cli/bin/architect.js node_modules/@angular-devkit/architect-cli/bin/architect.js
index 27b74b3..96b16a4 100644
--- node_modules/@angular-devkit/architect-cli/bin/architect.js
+++ node_modules/@angular-devkit/architect-cli/bin/architect.js
@@ -198,8 +198,6 @@ async function main(args) {
// Show usage of deprecated options
registry.useXDeprecatedProvider((msg) => logger.warn(msg));
const { workspace } = await core_1.workspaces.readWorkspace(configFilePath, core_1.workspaces.createWorkspaceHost(new node_2.NodeJsSyncHost()));
- // Clear the console.
- process.stdout.write('\u001Bc');
return await _executeTarget(logger, workspace, root, argv, registry);
}
main(process.argv.slice(2)).then((code) => {