build(gulp): don't throw exceptions on exit when angularBuilder was not initialized
This commit is contained in:
parent
d04a515eb0
commit
e89bf01c2b
|
@ -47,7 +47,9 @@ var angularBuilder = {
|
|||
rebuildBrowserProdTree: throwToolsBuildMissingError,
|
||||
rebuildNodeTree: throwToolsBuildMissingError,
|
||||
rebuildDartTree: throwToolsBuildMissingError,
|
||||
cleanup: function() {}
|
||||
cleanup: function() {
|
||||
return Promise.resolve();
|
||||
}
|
||||
};
|
||||
|
||||
(function checkNodeAndNpmVersions() {
|
||||
|
|
Loading…
Reference in New Issue