* Update project dependencies to use the `@lumeweb/kernel-protomux-client` package instead of `protomux` and add it as a git dependency in package.json.
This commit is contained in:
parent
c459f1f0a3
commit
2e98dd16d1
|
@ -4,6 +4,7 @@
|
|||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"dependencies": {
|
||||
"@lumeweb/kernel-protomux-client": "git+https://git.lumeweb.com/LumeWeb/kernel-protomux-client.git",
|
||||
"bits-to-bytes": "^1.3.0",
|
||||
"compact-encoding": "^2.11.0",
|
||||
"compact-encoding-bitfield": "^1.0.0",
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
import EventEmitter from "events";
|
||||
// @ts-ignore
|
||||
import Protomux from "protomux";
|
||||
import Protomux from "@lumeweb/kernel-protomux-client";
|
||||
// @ts-ignore
|
||||
import c from "compact-encoding";
|
||||
// @ts-ignore
|
||||
import bitfield from "compact-encoding-bitfield";
|
||||
// @ts-ignore
|
||||
import bits from "bits-to-bytes";
|
||||
import * as buffer from "buffer";
|
||||
|
||||
export default class ProtomuxRPC extends EventEmitter {
|
||||
private _id: number;
|
||||
|
|
Loading…
Reference in New Issue