Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/managed-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: git install builds with runtime deps only
runs-on: ubuntu-latest
env:
BB_VERSION: "0.36.0"
BB_VERSION: "0.39.0"
BB_DATA_DIR: ${{ github.workspace }}/.bb-data
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
useRealtime,
useRealtimeConnectionState,
useRpc,
} from "@bb/plugin-sdk/app";
} from "@get-bb/plugin-sdk/app";
import {
Select,
SelectContent,
Expand Down
49 changes: 48 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"engines": {
"bb": ">=0.36",
"bbPluginSdk": "^0.4.1"
"bbPluginSdk": ">=0.4.8"
},
"bb": {
"name": "System",
Expand All @@ -30,6 +30,7 @@
"zod": "^4.3.6"
},
"devDependencies": {
"@get-bb/plugin-sdk": "0.4.8",
"@radix-ui/react-dialog": "^1.1.19",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
Expand Down
2 changes: 1 addition & 1 deletion server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// so there is nothing to gain and a 22ms spawn to lose.
import { execFile, execFileSync } from "node:child_process";
import { promisify } from "node:util";
import { defineRpcContract, type BbPluginApi } from "@bb/plugin-sdk";
import { defineRpcContract, type BbPluginApi } from "@get-bb/plugin-sdk";
import si from "systeminformation";
import { z } from "zod";

Expand Down
7 changes: 0 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@
"node"
],
"paths": {
"@bb/plugin-sdk": [
"./types/bb-plugin-sdk.d.ts"
],
"@bb/plugin-sdk/app": [
"./types/bb-plugin-sdk-app.d.ts"
],
"@/*": [
"./*"
]
Expand All @@ -29,7 +23,6 @@
"include": [
"server.ts",
"app.tsx",
"types",
"components",
"lib",
"hooks"
Expand Down
Loading
Loading