@momentumcms/plugins-analytics 0.5.5 → 0.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.cjs +1 -0
  2. package/index.js +1 -0
  3. package/package.json +5 -5
package/index.cjs CHANGED
@@ -2348,6 +2348,7 @@ function analyticsPlugin(config) {
2348
2348
  }
2349
2349
  return {
2350
2350
  name: "analytics",
2351
+ collections: config.trackingRules !== false ? [TrackingRules] : [],
2351
2352
  eventStore,
2352
2353
  analyticsConfig: config,
2353
2354
  adminRoutes,
package/index.js CHANGED
@@ -2312,6 +2312,7 @@ function analyticsPlugin(config) {
2312
2312
  }
2313
2313
  return {
2314
2314
  name: "analytics",
2315
+ collections: config.trackingRules !== false ? [TrackingRules] : [],
2315
2316
  eventStore,
2316
2317
  analyticsConfig: config,
2317
2318
  adminRoutes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentumcms/plugins-analytics",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "description": "Analytics and content tracking plugin for Momentum CMS",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",
@@ -51,10 +51,10 @@
51
51
  "@angular/common": "^21.0.0",
52
52
  "@angular/core": "^21.0.0",
53
53
  "@angular/router": "^21.0.0",
54
- "@momentumcms/core": "0.5.5",
55
- "@momentumcms/logger": "0.5.5",
56
- "@momentumcms/plugins-core": "0.5.5",
57
- "@momentumcms/server-core": "0.5.5",
54
+ "@momentumcms/core": "0.5.7",
55
+ "@momentumcms/logger": "0.5.7",
56
+ "@momentumcms/plugins-core": "0.5.7",
57
+ "@momentumcms/server-core": "0.5.7",
58
58
  "express": "^4.21.0",
59
59
  "rxjs": "^7.0.0"
60
60
  },