Skip to content

Commit

Permalink
Let fedify init use @fedify/postgres 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Nov 3, 2024
1 parent 7c1968e commit dad1ca1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cli/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ const kvStores: Record<KvStore, KvStoreDescription> = {
redis: {
label: "Redis",
dependencies: {
"@fedify/redis": "^0.2.0",
"@fedify/redis": "^0.2.1",
"npm:ioredis": "^5.4.1",
},
imports: { "@fedify/redis": ["RedisKvStore"], ioredis: ["Redis"] },
Expand All @@ -464,8 +464,8 @@ const kvStores: Record<KvStore, KvStoreDescription> = {
postgres: {
label: "PostgreSQL",
dependencies: {
"@fedify/postgres": "^0.1.0",
"npm:postgres": "^3.4.4",
"@fedify/postgres": "^0.2.0",
"npm:postgres": "^3.4.5",
},
imports: { "@fedify/postgres": ["PostgresKvStore"], postgres: "postgres" },
object: {
Expand Down Expand Up @@ -503,7 +503,7 @@ const messageQueues: Record<MessageQueue, MessageQueueDescription> = {
redis: {
label: "Redis",
dependencies: {
"@fedify/redis": "^0.2.0",
"@fedify/redis": "^0.2.1",
"npm:ioredis": "^5.4.1",
},
imports: { "@fedify/redis": ["RedisMessageQueue"], ioredis: ["Redis"] },
Expand All @@ -519,8 +519,8 @@ const messageQueues: Record<MessageQueue, MessageQueueDescription> = {
postgres: {
label: "PostgreSQL",
dependencies: {
"@fedify/postgres": "^0.1.0",
"npm:postgres": "^3.4.4",
"@fedify/postgres": "^0.2.0",
"npm:postgres": "^3.4.5",
},
imports: {
"@fedify/postgres": ["PostgresMessageQueue"],
Expand Down

0 comments on commit dad1ca1

Please sign in to comment.