From 5a6d6546c141fa92b36001341464780901b7eb03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Tue, 5 Feb 2019 13:49:54 +0000 Subject: [PATCH 1/2] Bump typescript from 3.0.0-rc to 3.3.1 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.0.0-rc to 3.3.1. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/commits/v3.3.1) Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index d7d36ae1a36..0d136f09a12 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7962,9 +7962,9 @@ typedarray@^0.0.6: integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= typescript@^3.0.0-rc: - version "3.0.0-rc" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.0.0-rc.tgz#13553808426d393d3f92c054f4fa6f24589549c1" - integrity sha512-//6ivFupDRi+rtsivXnYNfXK7URxdvO18hhxgNpbiIVBE611+1NCiiEfgjjx53TU7fjxlhWPuv3RRj5hJF62/w== + version "3.3.1" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.1.tgz#6de14e1db4b8a006ac535e482c8ba018c55f750b" + integrity sha512-cTmIDFW7O0IHbn1DPYjkiebHxwtCMU+eTy30ZtJNBPF9j2O1ITu5XH2YnBeVRKWHqF+3JQwWJv0Q0aUgX8W7IA== ua-parser-js@^0.7.9: version "0.7.18" From d7d9b9bfa3e981baa46bd919c893b05d041f12fa Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Wed, 6 Feb 2019 09:33:36 +0100 Subject: [PATCH 2/2] ignore typescript bug --- bin/webpack.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/webpack.js b/bin/webpack.js index a7209749183..8c0bfdbe2fb 100755 --- a/bin/webpack.js +++ b/bin/webpack.js @@ -1,5 +1,6 @@ #!/usr/bin/env node +// @ts-ignore process.exitCode = 0; /** @@ -164,5 +165,7 @@ if (installedClis.length === 0) { " and " )} together. To work with the "webpack" command you need only one CLI package, please remove one of them or use them directly via their binary.` ); + + // @ts-ignore process.exitCode = 1; }