Compare commits

...

2 Commits

Author SHA1 Message Date
Derrick Hammer fb729e6a1d
*Don't await on bootup 2023-02-18 09:55:23 -05:00
Derrick Hammer 053a9b7585
*Update deps 2023-02-16 01:03:30 -05:00
2 changed files with 4 additions and 4 deletions

View File

@ -10,10 +10,10 @@
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "^18.11.19",
"@types/node": "^18.13.0",
"esbuild": "^0.15.18",
"prettier": "^2.8.3",
"rollup": "^3.14.0",
"prettier": "^2.8.4",
"rollup": "^3.15.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.1"

View File

@ -71,7 +71,7 @@ const plugin: Plugin = {
name: "handshake",
async plugin(_api: PluginAPI): Promise<void> {
api = _api;
await boot(api);
boot(api);
const proxy = new Proxy({
swarm: api.swarm,
protocol: PROTOCOL,