@atlaspack/logger
Advanced tools
Comparing version 2.13.2-canary.3638 to 2.13.2-canary.3639
@@ -28,8 +28,9 @@ "use strict"; | ||
const span = tracer.enter(label); | ||
let result; | ||
try { | ||
const result = await fn(); | ||
return result; | ||
result = await fn(); | ||
} finally { | ||
tracer.exit(span); | ||
} | ||
return result; | ||
} |
{ | ||
"name": "@atlaspack/logger", | ||
"version": "2.13.2-canary.3638+27667e303", | ||
"version": "2.13.2-canary.3639+30053076d", | ||
"description": "Blazing fast, zero configuration web application bundler", | ||
@@ -25,7 +25,7 @@ "license": "(MIT OR Apache-2.0)", | ||
"dependencies": { | ||
"@atlaspack/diagnostic": "2.13.2-canary.3638+27667e303", | ||
"@atlaspack/events": "2.13.2-canary.3638+27667e303", | ||
"@atlaspack/rust": "2.13.2-canary.3638+27667e303" | ||
"@atlaspack/diagnostic": "2.13.2-canary.3639+30053076d", | ||
"@atlaspack/events": "2.13.2-canary.3639+30053076d", | ||
"@atlaspack/rust": "2.13.2-canary.3639+30053076d" | ||
}, | ||
"gitHead": "27667e30343a30246292af83d394bcfd542f04e5" | ||
"gitHead": "30053076dfd20ca62ddbc682f58adb994029ac55" | ||
} |
@@ -22,8 +22,9 @@ // @flow strict-local | ||
const span = tracer.enter(label); | ||
let result; | ||
try { | ||
const result = await fn(); | ||
return result; | ||
result = await fn(); | ||
} finally { | ||
tracer.exit(span); | ||
} | ||
return result; | ||
} |
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
27062
543