You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(@angular-devkit/core): use performance.now instead of Date.now for timestamp in tmp file names
Use performance.now instead of Date.now for timestamps in the tmpdir path name for a TempScopedNodeJsSyncHost to prevent naming conflicts.
When performaning tests on a fast enough machine which rely on this class, two instances can be instantiated within one second and can
cause failures because the path already exists that is attempted to be used. Using performance.now instead of Date.now should not run into
this issue as it is has microsecond precision.
0 commit comments