Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphschuler committed Nov 20, 2023
1 parent 9cabba1 commit da89409
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions packages/priority-queue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"start": "tsx src/index.ts"
},
"dependencies": {
"@lib-lib/logger": "*",
"mongodb": "^6.1.0",
"tsx": "^4.1.4"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/random/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from "./strategies/Fortuna.strategy.js";
export * from "./strategies/RedisFortuna.strategy.js";
// export * from "./strategies/RedisFortuna.strategy.js";
export * from "./strategies/LaggedFibonacci.strategy.js";
export * from "./strategies/LinearCongruential.strategy.js";
export * from "./strategies/MersenneTwister.strategy.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/random/src/strategies/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from "./Fortuna.strategy.js";
export * from "./RedisFortuna.strategy.js";
// export * from "./RedisFortuna.strategy.js";
export * from "./LaggedFibonacci.strategy.js";
export * from "./LinearCongruential.strategy.js";
export * from "./MersenneTwister.strategy.js";
Expand Down
6 changes: 3 additions & 3 deletions packages/task-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"dist"
],
"dependencies": {
"@lib-lib/logger": "^1.0.0",
"@lib-lib/priority-queue": "^1.0.0",
"@lib-lib/worker-pool": "^1.0.0"
"@lib-lib/logger": "*",
"@lib-lib/priority-queue": "*",
"@lib-lib/worker-pool": "*"
},
"devDependencies": {
"@types/node": "^20.7.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/worker-pool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"dist"
],
"dependencies": {
"@lib-lib/logger": "^1.0.0",
"@lib-lib/ts-error": "^1.0.0"
"@lib-lib/logger": "*",
"@lib-lib/ts-error": "*"
},
"devDependencies": {
"@types/node": "^20.7.1",
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@lib-lib/priority-queue@workspace:packages/priority-queue"
dependencies:
"@lib-lib/logger": "npm:^1.0.0"
"@types/mongodb": "npm:^4.0.7"
"@types/node": "npm:^20.7.1"
"@typescript-eslint/eslint-plugin": "npm:^6.7.3"
Expand Down

0 comments on commit da89409

Please sign in to comment.