@adobe/helix-rum-enhancer
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,8 @@ | ||
## [1.1.1](https://github.com/adobe/helix-rum-enhancer/compare/v1.1.0...v1.1.1) (2023-05-16) | ||
### Bug Fixes | ||
* **cwv:** window.webVitals[name] is not a function ([a2d46cb](https://github.com/adobe/helix-rum-enhancer/commit/a2d46cbbf977a59bfe5b3fd179930db75bb3e809)) | ||
# [1.1.0](https://github.com/adobe/helix-rum-enhancer/compare/v1.0.2...v1.1.0) (2023-05-11) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Helix RUM Enhancer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -77,4 +77,4 @@ /* | ||
.filter((metric) => typeof metric === 'function') | ||
.forEach((name) => { | ||
window.webVitals[`get${name}`](storeCWV); | ||
.forEach((invokeMetric) => { | ||
invokeMetric(storeCWV); | ||
}); | ||
@@ -81,0 +81,0 @@ }; |
31092