mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-23 23:59:27 +08:00
refactor(@ngtools/webpack): simplify a call using await
This commit is contained in:
parent
55a86c99ab
commit
8d82e9812d
@ -760,8 +760,8 @@ export class AngularCompilerPlugin {
|
||||
return result;
|
||||
}
|
||||
|
||||
return this.done.then(
|
||||
() => {
|
||||
await this.done;
|
||||
|
||||
// This folder does not exist, but we need to give webpack a resource.
|
||||
// TODO: check if we can't just leave it as is (angularCoreModuleDir).
|
||||
result.resource = path.join(this._basePath, '$$_lazy_route_resource');
|
||||
@ -790,9 +790,6 @@ export class AngularCompilerPlugin {
|
||||
};
|
||||
|
||||
return result;
|
||||
},
|
||||
() => undefined,
|
||||
);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user