Compare commits
No commits in common. "31ac34072166c0e28fe964fe7f28d46e92e9eb4d" and "c459f1f0a38e579d3651e12f3399cc9afdabc198" have entirely different histories.
31ac340721
...
c459f1f0a3
|
@ -1,6 +1,6 @@
|
|||
import EventEmitter from "events";
|
||||
// @ts-ignore
|
||||
import Protomux from "@lumeweb/kernel-protomux-client";
|
||||
import Protomux from "protomux";
|
||||
// @ts-ignore
|
||||
import c from "compact-encoding";
|
||||
// @ts-ignore
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
"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,12 +1,13 @@
|
|||
import EventEmitter from "events";
|
||||
// @ts-ignore
|
||||
import Protomux from "@lumeweb/kernel-protomux-client";
|
||||
import Protomux from "protomux";
|
||||
// @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