@adobe/helix-rum-enhancer
Advanced tools
Comparing version 2.17.1 to 2.18.0
@@ -0,1 +1,8 @@ | ||
# [2.18.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.17.1...v2.18.0) (2024-08-08) | ||
### Features | ||
* **loadresource:** include API calls in `loadresouce` requests for content request counting ([45449c2](https://github.com/adobe/helix-rum-enhancer/commit/45449c2e6a1602d80321f4ffa8698cbd116f1383)) | ||
## [2.17.1](https://github.com/adobe/helix-rum-enhancer/compare/v2.17.0...v2.17.1) (2024-08-02) | ||
@@ -2,0 +9,0 @@ |
@@ -149,3 +149,3 @@ /* | ||
.filter((entry) => window.location.hostname === new URL(entry.name).hostname) | ||
.filter((entry) => new URL(entry.name).pathname.match('.*(\\.plain\\.html$|\\.json|graphql)')) | ||
.filter((entry) => new URL(entry.name).pathname.match('.*(\\.plain\\.html$|\\.json|graphql|api)')) | ||
.forEach((entry) => { | ||
@@ -152,0 +152,0 @@ sampleRUM('loadresource', { source: entry.name, target: Math.round(entry.duration) }); |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.17.1", | ||
"version": "2.18.0", | ||
"description": "Helix RUM Enhancer", | ||
@@ -51,9 +51,9 @@ "main": "src/index.js", | ||
"eslint-plugin-import": "2.29.1", | ||
"husky": "9.1.3", | ||
"husky": "9.1.4", | ||
"jsdoc-to-markdown": "8.0.3", | ||
"junit-report-builder": "4.0.0", | ||
"lint-staged": "15.2.7", | ||
"junit-report-builder": "4.0.1", | ||
"lint-staged": "15.2.8", | ||
"mocha": "10.7.0", | ||
"mocha-multi-reporters": "1.5.1", | ||
"rollup": "4.19.1", | ||
"rollup": "4.20.0", | ||
"rollup-plugin-cleanup": "3.2.1", | ||
@@ -60,0 +60,0 @@ "rollup-plugin-eslint-bundle": "9.0.0", |
@@ -248,3 +248,3 @@ /* | ||
.filter((entry) => window.location.hostname === new URL(entry.name).hostname) | ||
.filter((entry) => new URL(entry.name).pathname.match('.*(\\.plain\\.html$|\\.json|graphql)')) | ||
.filter((entry) => new URL(entry.name).pathname.match('.*(\\.plain\\.html$|\\.json|graphql|api)')) | ||
.forEach((entry) => { | ||
@@ -251,0 +251,0 @@ sampleRUM('loadresource', { source: entry.name, target: Math.round(entry.duration) }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85327