From 1d185a57d47d0c92d10a5b7b553dcace1a24643a Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2020 20:22:37 +0000 Subject: [PATCH 1/3] chore(deps-dev): bump typescript from 3.7.5 to 3.8.2 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.7.5 to 3.8.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/commits) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 4aad6afc2..f0cfbf6b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6628,9 +6628,9 @@ typedarray-to-buffer@^3.1.5: is-typedarray "^1.0.0" typescript@^3.6.4: - version "3.7.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.5.tgz#0692e21f65fd4108b9330238aac11dd2e177a1ae" - integrity sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw== + version "3.8.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.2.tgz#91d6868aaead7da74f493c553aeff76c0c0b1d5a" + integrity sha512-EgOVgL/4xfVrCMbhYKUQTdF37SQn4Iw73H5BgCrF1Abdun7Kwy/QZsE/ssAy0y4LxBbvua3PIbFsbRczWWnDdQ== uglify-js@^2.6.1: version "2.8.29" From 6daf2ce243a8214db00a817bc8c22bc338a0ed29 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Fri, 28 Feb 2020 09:50:30 +0100 Subject: [PATCH 2/3] make private property public --- lib/ChunkGraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ChunkGraph.js b/lib/ChunkGraph.js index ba04a9f66..2fcf5c908 100644 --- a/lib/ChunkGraph.js +++ b/lib/ChunkGraph.js @@ -202,7 +202,7 @@ class ChunkGraph { this._chunks = new WeakMap(); /** @private @type {WeakMap} */ this._blockChunkGroups = new WeakMap(); - /** @private @type {ModuleGraph} */ + /** @type {ModuleGraph} */ this.moduleGraph = moduleGraph; this._getGraphRoots = this._getGraphRoots.bind(this); From 2dc1cf3130e5210f9d22ff741e7a84b3440c9ba1 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Fri, 28 Feb 2020 11:36:40 +0100 Subject: [PATCH 3/3] fix incorrect declaration --- declarations.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/declarations.d.ts b/declarations.d.ts index 580226c4e..09759d094 100644 --- a/declarations.d.ts +++ b/declarations.d.ts @@ -114,7 +114,7 @@ declare module "neo-async" { ): void; export function queue( - worker: AsyncFunction, + worker: AsyncIterator, concurrency?: number ): QueueObject;