mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
added async await in isopack to have better tracing
This commit is contained in:
@@ -1002,8 +1002,8 @@ Object.assign(ProjectContext.prototype, {
|
||||
? null : self._forceRebuildPackages);
|
||||
}
|
||||
|
||||
await buildmessage.enterJob('building local packages', function () {
|
||||
return self.isopackCache.buildLocalPackages();
|
||||
await buildmessage.enterJob('building local packages', async function () {
|
||||
return await self.isopackCache.buildLocalPackages();
|
||||
});
|
||||
self._completedStage = STAGE.BUILD_LOCAL_PACKAGES;
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user