@okf/ootils 1.4.5 → 1.4.6

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/node.js CHANGED
@@ -667,7 +667,6 @@ var require_WorkerManager = __commonJS({
667
667
  this.activeWorkers = [];
668
668
  }
669
669
  startAllWorkers() {
670
- if (process.env.NODE_ENV !== "production") return this.activeWorkers;
671
670
  if (this.workers.length === 0) {
672
671
  console.log("No workers provided to start");
673
672
  return [];
@@ -993,6 +992,7 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
993
992
  }
994
993
  },
995
994
  AI_CATEGORIZE_QUEUE: {
995
+ id: "ai-categorize-queue",
996
996
  queueConfig: {
997
997
  defaultJobOptions: {
998
998
  attempts: 3,
package/dist/node.mjs CHANGED
@@ -672,7 +672,6 @@ var require_WorkerManager = __commonJS({
672
672
  this.activeWorkers = [];
673
673
  }
674
674
  startAllWorkers() {
675
- if (process.env.NODE_ENV !== "production") return this.activeWorkers;
676
675
  if (this.workers.length === 0) {
677
676
  console.log("No workers provided to start");
678
677
  return [];
@@ -998,6 +997,7 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
998
997
  }
999
998
  },
1000
999
  AI_CATEGORIZE_QUEUE: {
1000
+ id: "ai-categorize-queue",
1001
1001
  queueConfig: {
1002
1002
  defaultJobOptions: {
1003
1003
  attempts: 3,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.4.5",
6
+ "version": "1.4.6",
7
7
  "description": "Utility functions for both browser and Node.js",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.mjs",