Skip to content

Commit

Permalink
chore(deps): update all devdependencies (major) (#11637)
Browse files Browse the repository at this point in the history
* chore(deps): update all devdependencies

* chore: update web-streams-polyfill imports

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alessia Bellisario <[email protected]>
  • Loading branch information
renovate[bot] and alessbell authored Mar 18, 2024
1 parent 24b73b4 commit 89b3bbf
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@
"ts-api-utils": "1.3.0",
"ts-jest": "29.1.2",
"ts-jest-resolver": "2.0.1",
"ts-morph": "21.0.1",
"ts-morph": "22.0.0",
"ts-node": "10.9.2",
"typedoc": "0.25.0",
"typescript": "5.4.2",
"wait-for-observables": "1.0.3",
"web-streams-polyfill": "3.3.3",
"web-streams-polyfill": "4.0.0",
"whatwg-fetch": "3.6.20"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/link/http/__tests__/HttpLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import gql from "graphql-tag";
import fetchMock from "fetch-mock";
import { ASTNode, print, stripIgnoredCharacters } from "graphql";
import { TextDecoder } from "util";
import { ReadableStream } from "web-streams-polyfill/ponyfill/es2018";
import { ReadableStream } from "web-streams-polyfill";
import { Readable } from "stream";

import {
Expand Down
2 changes: 1 addition & 1 deletion src/link/http/__tests__/responseIterator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { itAsync, subscribeAndCount } from "../../../testing";
import type { Observable } from "zen-observable-ts";
import { ObservableQuery } from "../../../core";
import { TextEncoder, TextDecoder } from "util";
import { ReadableStream } from "web-streams-polyfill/ponyfill/es2018";
import { ReadableStream } from "web-streams-polyfill";
import { Readable } from "stream";

var Blob = require("blob-polyfill").Blob;
Expand Down
2 changes: 1 addition & 1 deletion src/link/http/__tests__/responseIteratorNoAsyncIterator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { HttpLink } from "../HttpLink";
import { itAsync, subscribeAndCount } from "../../../testing";
import type { Observable } from "zen-observable-ts";
import { TextEncoder, TextDecoder } from "util";
import { ReadableStream } from "web-streams-polyfill/ponyfill/es2018";
import { ReadableStream } from "web-streams-polyfill";
import { Readable } from "stream";

// As of Jest 26 there is no way to mock/unmock a module that is used indirectly
Expand Down

0 comments on commit 89b3bbf

Please sign in to comment.