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
50 changes: 49 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 @@ -4,7 +4,7 @@
"type": "module",
"engines": {
"bb": ">=0.36",
"bbPluginSdk": "^0.4.1"
"bbPluginSdk": ">=0.4.8"
},
"bb": {
"name": "Bus",
Expand All @@ -18,6 +18,7 @@
]
},
"devDependencies": {
"@get-bb/plugin-sdk": "0.4.8",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
Expand Down
2 changes: 1 addition & 1 deletion server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// - Presence derives from thread lifecycle: archived/deleted threads drop out
// of every room automatically.
// - A room send without --to is ambient: stored for recv/log, wakes nobody.
import type { BbPluginApi } from "@bb/plugin-sdk";
import type { BbPluginApi } from "@get-bb/plugin-sdk";
// Argument parsing, recipient resolution and message formatting live in lib.ts
// so `node --test` can exercise them without bb, sqlite or a network.
import { execFileSync } from "node:child_process";
Expand Down
11 changes: 1 addition & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,13 @@
"types": [
"node"
],
"paths": {
"@bb/plugin-sdk": [
"./types/bb-plugin-sdk.d.ts"
],
"@bb/plugin-sdk/app": [
"./types/bb-plugin-sdk-app.d.ts"
]
},
"noEmit": true,
"skipLibCheck": false,
"allowImportingTsExtensions": true
},
"include": [
"server.ts",
"lib.ts",
"lib.test.ts",
"types"
"lib.test.ts"
]
}
Loading
Loading