@adobe/helix-rum-enhancer
Advanced tools
Comparing version 1.5.0 to 1.6.0
@@ -0,1 +1,8 @@ | ||
# [1.6.0](https://github.com/adobe/helix-rum-enhancer/compare/v1.5.0...v1.6.0) (2023-10-18) | ||
### Features | ||
* **cwv:** add support for TTFB ([f987042](https://github.com/adobe/helix-rum-enhancer/commit/f9870425d6bf9135b090d18947e7dc6ad0fa6ca9)) | ||
# [1.5.0](https://github.com/adobe/helix-rum-enhancer/compare/v1.4.0...v1.5.0) (2023-09-21) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"description": "Helix RUM Enhancer", | ||
@@ -37,3 +37,3 @@ "main": "src/index.js", | ||
"codecov": "3.8.3", | ||
"eslint": "8.49.0", | ||
"eslint": "8.51.0", | ||
"eslint-plugin-header": "3.1.1", | ||
@@ -43,7 +43,7 @@ "eslint-plugin-import": "2.28.1", | ||
"jsdoc-to-markdown": "8.0.0", | ||
"junit-report-builder": "3.0.1", | ||
"lint-staged": "14.0.1", | ||
"junit-report-builder": "3.1.0", | ||
"lint-staged": "15.0.1", | ||
"mocha": "10.2.0", | ||
"mocha-multi-reporters": "1.5.1", | ||
"semantic-release": "22.0.0" | ||
"semantic-release": "22.0.5" | ||
}, | ||
@@ -50,0 +50,0 @@ "lint-staged": { |
@@ -83,3 +83,3 @@ /* | ||
// methods can be found on the `webVitals` global namespace. | ||
['CLS', 'FID', 'LCP', 'INP'] | ||
['CLS', 'FID', 'LCP', 'INP', 'TTFB'] | ||
.map((metric) => window.webVitals[`get${metric}`]) | ||
@@ -86,0 +86,0 @@ .filter((metric) => typeof metric === 'function') |
35005