Skip to content

Commit f8df2c8

Browse files
committed
Remove unnecessary dependencies.
1 parent 3691fc3 commit f8df2c8

7 files changed

Lines changed: 2 additions & 31 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"tamasfe.even-better-toml",
1717
"oven.bun-vscode",
1818
"oxc.oxc-vscode",
19-
"ckolkman.vscode-postgres",
2019
"vitest.explorer"
2120
]
2221
}

.devcontainer/docker-compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: zenstack-cache
22

33
volumes:
4-
postgres-data:
54
redis-data:
65
redis-insight:
76

.github/workflows/publish-package.yaml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
container: node:22
1010
services:
11-
postgres:
12-
image: postgres:10
13-
env:
14-
POSTGRES_USER: postgres
15-
POSTGRES_PASSWORD: postgres
16-
POSTGRES_DB: postgres
17-
POSTGRES_HOST: postgres
18-
POSTGRES_PORT: 5432
19-
POSTGRES_URL: postgresql://postgres:postgres@postgres:5432/postgres
20-
options: >-
21-
--health-cmd pg_isready
22-
--health-interval 5s
23-
--health-timeout 5s
24-
--health-retries 5
25-
2611
redis:
2712
image: redis:5.0
2813
options: >-
@@ -51,12 +36,6 @@ jobs:
5136

5237
- name: Test
5338
env:
54-
POSTGRES_USER: postgres
55-
POSTGRES_PASSWORD: postgres
56-
POSTGRES_DB: postgres
57-
POSTGRES_HOST: postgres
58-
POSTGRES_PORT: 5432
59-
POSTGRES_URL: postgresql://postgres:postgres@postgres:5432/postgres
6039
REDIS_URL: redis://redis:6379
6140
run: bun run test
6241

.vscode/extensions.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"tamasfe.even-better-toml",
66
"oven.bun-vscode",
77
"oxc.oxc-vscode",
8-
"ckolkman.vscode-postgres",
98
"vitest.explorer"
109
]
1110
}

.vscode/settings.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@
88
"[javascript][javascriptreact][typescript][typescriptreact][json][jsonc]": {
99
"editor.defaultFormatter": "oxc.oxc-vscode"
1010
},
11-
"vscode-postgres.defaultConnection": "postgres",
12-
"vscode-postgres.defaultDatabase": "postgres",
1311
}

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"oxlint": "1.35.0",
2323
"tsdown": "0.18.3",
2424
"turbo": "2.7.2",
25-
"typescript": "5.9.3",
25+
"typescript": "catalog:",
2626
"vitest": "4.0.17"
2727
},
2828
"workspaces": {
@@ -31,7 +31,6 @@
3131
],
3232
"catalog": {
3333
"@zenstackhq/orm": "canary",
34-
"@zenstackhq/schema": "canary",
3534
"zod": "^4.1.0",
3635
"kysely": "~0.28.8",
3736
"ioredis": "^5.0.0",

packages/cache/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@
8787
},
8888
"dependencies": {
8989
"ioredis": "catalog:",
90-
"lossless-json": "^4.0.1",
9190
"murmurhash": "^2.0.1",
9291
"stable-hash": "^0.0.6",
9392
"zod": "catalog:"
@@ -99,8 +98,7 @@
9998
"@types/better-sqlite3": "7.6.13"
10099
},
101100
"peerDependencies": {
102-
"@zenstackhq/orm": "catalog:",
103-
"@zenstackhq/schema": "catalog:"
101+
"@zenstackhq/orm": "catalog:"
104102
},
105103
"packageManager": "bun@1.3.6"
106104
}

0 commit comments

Comments
 (0)