mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
When ngcc fails due to a timeout waiting for another process to complete, it was not failing with a unique exit code, so that it was not possible to know if the process can be restarted; compared to ngcc failing for some more fatal reason. Now if ngcc exits because of a timeout, the exit code will be 177. PR Close #36838
10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
export const IMPORT_PREFIX = 'ɵngcc';
|
|
export const NGCC_TIMED_OUT_EXIT_CODE = 177;
|