mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
build(gulp): don't throw exceptions on exit when angularBuilder was not initialized
This commit is contained in:
parent
d04a515eb0
commit
e89bf01c2b
1 changed files with 3 additions and 1 deletions
|
|
@ -47,7 +47,9 @@ var angularBuilder = {
|
|||
rebuildBrowserProdTree: throwToolsBuildMissingError,
|
||||
rebuildNodeTree: throwToolsBuildMissingError,
|
||||
rebuildDartTree: throwToolsBuildMissingError,
|
||||
cleanup: function() {}
|
||||
cleanup: function() {
|
||||
return Promise.resolve();
|
||||
}
|
||||
};
|
||||
|
||||
(function checkNodeAndNpmVersions() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue