@bluelibs/runner 4.5.1 → 4.5.3

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.
package/dist/index.cjs CHANGED
@@ -3492,9 +3492,17 @@ var _Store = class _Store {
3492
3492
  }
3493
3493
  }
3494
3494
  }
3495
+ /**
3496
+ * Internal, avoid using this method directly.
3497
+ */
3495
3498
  processOverrides() {
3496
3499
  this.overrideManager.processOverrides();
3497
3500
  }
3501
+ /**
3502
+ * Internal, avoid using this method directly.
3503
+ * @param item
3504
+ * @returns
3505
+ */
3498
3506
  storeGenericItem(item) {
3499
3507
  return this.registry.storeGenericItem(item);
3500
3508
  }
@@ -3506,6 +3514,11 @@ var _Store = class _Store {
3506
3514
  getTasksWithTag(tag) {
3507
3515
  return this.registry.getTasksWithTag(tag);
3508
3516
  }
3517
+ /**
3518
+ * Returns all resources with the given tag.
3519
+ * @param tag - The tag to filter by.
3520
+ * @returns The resources with the given tag.
3521
+ */
3509
3522
  getResourcesWithTag(tag) {
3510
3523
  return this.registry.getResourcesWithTag(tag);
3511
3524
  }