bulltrackers-module 1.0.761 → 1.0.762

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.
@@ -58,9 +58,10 @@ async function planComputations(req, res) {
58
58
 
59
59
  // 1. Walk the Manifest
60
60
  for (const entry of manifest) {
61
- // FILTER: Only Roots (Pass 0)
62
- // Resilience: If code changes and a comp becomes Pass 1, it won't be scheduled here.
63
- if (entry.pass !== 0) continue;
61
+ // FILTER: Only Roots (Pass 1)
62
+ // Graph.js assigns roots (no dependencies) to Pass 1.
63
+ // Resilience: If code changes and a comp becomes Pass 2+, it won't be scheduled here.
64
+ if (entry.pass !== 1) continue;
64
65
 
65
66
  // Calculate Occurrences
66
67
  const occurrences = getOccurrencesInWindow(entry.schedule, now, windowEnd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bulltrackers-module",
3
- "version": "1.0.761",
3
+ "version": "1.0.762",
4
4
  "description": "Helper Functions for Bulltrackers.",
5
5
  "main": "index.js",
6
6
  "files": [