Skip to content

Commit 020bfc5

Browse files
committed
chore: move packages/sdk/* into packages/ (#90)
1 parent 867e990 commit 020bfc5

File tree

17 files changed

+30
-31
lines changed

17 files changed

+30
-31
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
run: |
2727
bun run --cwd packages/blink build
2828
bun run --cwd packages/compute-protocol build
29-
bun run --cwd packages/sdk/compute build
30-
bun run --cwd packages/sdk/github build
31-
bun run --cwd packages/sdk/slackbot build
32-
bun run --cwd packages/sdk/model-intent build
29+
bun run --cwd packages/compute build
30+
bun run --cwd packages/github build
31+
bun run --cwd packages/slack build
32+
bun run --cwd packages/model-intent build
3333
3434
- name: Run formatter check
3535
run: bun run format --check

bun.lock

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,18 @@
6363
"zod": ">= 4",
6464
},
6565
},
66+
"packages/compute": {
67+
"name": "@blink-sdk/compute",
68+
"version": "0.0.15",
69+
"devDependencies": {
70+
"diff": "^8.0.2",
71+
},
72+
"peerDependencies": {
73+
"@blink-sdk/compute-protocol": ">= 0.0.6",
74+
"ai": ">= 5",
75+
"zod": ">= 4",
76+
},
77+
},
6678
"packages/compute-protocol": {
6779
"name": "@blink-sdk/compute-protocol",
6880
"version": "0.0.6",
@@ -119,22 +131,7 @@
119131
"packages/events": {
120132
"name": "@blink-sdk/events",
121133
},
122-
"packages/multiplexer": {
123-
"name": "@blink-sdk/multiplexer",
124-
},
125-
"packages/sdk/compute": {
126-
"name": "@blink-sdk/compute",
127-
"version": "0.0.15",
128-
"devDependencies": {
129-
"diff": "^8.0.2",
130-
},
131-
"peerDependencies": {
132-
"@blink-sdk/compute-protocol": ">= 0.0.3",
133-
"ai": ">= 5",
134-
"zod": ">= 4",
135-
},
136-
},
137-
"packages/sdk/github": {
134+
"packages/github": {
138135
"name": "@blink-sdk/github",
139136
"version": "0.0.22",
140137
"devDependencies": {
@@ -150,14 +147,17 @@
150147
"zod": ">=4",
151148
},
152149
},
153-
"packages/sdk/model-intent": {
150+
"packages/model-intent": {
154151
"name": "@blink-sdk/model-intent",
155152
"version": "0.0.4",
156153
"peerDependencies": {
157154
"ai": ">=5",
158155
"zod": ">=4",
159156
},
160157
},
158+
"packages/multiplexer": {
159+
"name": "@blink-sdk/multiplexer",
160+
},
161161
"packages/slack": {
162162
"name": "@blink-sdk/slack",
163163
"version": "1.1.1",
@@ -214,15 +214,15 @@
214214

215215
"@babel/types": ["@babel/types@7.28.4", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" } }, "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q=="],
216216

217-
"@blink-sdk/compute": ["@blink-sdk/compute@workspace:packages/sdk/compute"],
217+
"@blink-sdk/compute": ["@blink-sdk/compute@workspace:packages/compute"],
218218

219219
"@blink-sdk/compute-protocol": ["@blink-sdk/compute-protocol@workspace:packages/compute-protocol"],
220220

221221
"@blink-sdk/events": ["@blink-sdk/events@workspace:packages/events"],
222222

223-
"@blink-sdk/github": ["@blink-sdk/github@workspace:packages/sdk/github"],
223+
"@blink-sdk/github": ["@blink-sdk/github@workspace:packages/github"],
224224

225-
"@blink-sdk/model-intent": ["@blink-sdk/model-intent@workspace:packages/sdk/model-intent"],
225+
"@blink-sdk/model-intent": ["@blink-sdk/model-intent@workspace:packages/model-intent"],
226226

227227
"@blink-sdk/multiplexer": ["@blink-sdk/multiplexer@workspace:packages/multiplexer"],
228228

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"typecheck": "tsgo --noEmit"
99
},
1010
"workspaces": [
11-
"packages/*",
12-
"packages/sdk/*"
11+
"packages/*"
1312
],
1413
"devDependencies": {
1514
"@types/bun": "latest",

packages/sdk/compute/package.json renamed to packages/compute/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"type": "git",
1818
"url": "git+https://github.com/coder/blink.git"
1919
},
20-
"homepage": "https://github.com/coder/blink/tree/main/packages/sdk/compute",
20+
"homepage": "https://github.com/coder/blink/tree/main/packages/compute",
2121
"bugs": {
2222
"url": "https://github.com/coder/blink/issues"
2323
},
File renamed without changes.
File renamed without changes.

packages/desktop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cd packages/compute-protocol
2727
bun run build
2828

2929
# Build compute SDK
30-
cd ../sdk/compute
30+
cd ../compute
3131
bun run build
3232

3333
# Build core Blink SDK

packages/sdk/github/package.json renamed to packages/github/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"type": "git",
1818
"url": "git+https://github.com/coder/blink.git"
1919
},
20-
"homepage": "https://github.com/coder/blink/tree/main/packages/sdk/github",
20+
"homepage": "https://github.com/coder/blink/tree/main/packages/github",
2121
"bugs": {
2222
"url": "https://github.com/coder/blink/issues"
2323
},
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)