socket: Replace @iov/stream with @cosmjs/stream

This commit is contained in:
willclarktech 2020-06-24 18:02:25 +02:00
parent f355f63df9
commit c8a384bb0e
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7
6 changed files with 6 additions and 6 deletions

View File

@ -44,7 +44,7 @@
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js"
},
"dependencies": {
"@iov/stream": "^2.3.2",
"@cosmjs/stream": "^0.20.0",
"isomorphic-ws": "^4.0.1",
"ws": "^6.2.0",
"xstream": "^11.10.0"

View File

@ -1,4 +1,4 @@
import { DefaultValueProducer, ValueAndUpdates } from "@iov/stream";
import { DefaultValueProducer, ValueAndUpdates } from "@cosmjs/stream";
import { Listener, Producer, Stream } from "xstream";
import { SocketWrapperMessageEvent } from "./socketwrapper";

View File

@ -1,4 +1,4 @@
import { ValueAndUpdates } from "@iov/stream";
import { ValueAndUpdates } from "@cosmjs/stream";
import { Listener, Producer, Stream } from "xstream";
import { ConnectionStatus, QueueingStreamingSocket } from "./queueingstreamingsocket";

View File

@ -1,4 +1,4 @@
import { toListPromise } from "@iov/stream";
import { toListPromise } from "@cosmjs/stream";
import { StreamingSocket } from "./streamingsocket";

View File

@ -1,4 +1,4 @@
import { ValueAndUpdates } from "@iov/stream";
import { ValueAndUpdates } from "@cosmjs/stream";
import { Stream } from "xstream";
import { SocketWrapperMessageEvent } from "./socketwrapper";
export declare enum ConnectionStatus {

View File

@ -1,4 +1,4 @@
import { ValueAndUpdates } from "@iov/stream";
import { ValueAndUpdates } from "@cosmjs/stream";
import { Stream } from "xstream";
import { ConnectionStatus } from "./queueingstreamingsocket";
import { SocketWrapperMessageEvent } from "./socketwrapper";