chore: upgrade dependencies (#10094)

This commit upgrades:
- swc_ecmascript
- swc_bundler
- deno_doc
- deno_lint
- dprint-plugin-typescript
This commit is contained in:
Bartek Iwańczuk 2021-04-09 23:35:29 +02:00 committed by GitHub
parent 0fd1fb9329
commit 1c7217e390
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 106 additions and 95 deletions

View file

@ -853,7 +853,7 @@ unitTest(async function consoleTestStringifyPromises(): Promise<void> {
rej(Error("Whoops"));
});
await rejectedPromise;
} catch (err) {
} catch (_err) {
// pass
}
const strLines = stringify(rejectedPromise).split("\n");
@ -1478,7 +1478,7 @@ unitTest(function consoleLogShouldNotThrowError(): void {
try {
console.log(new Error("foo"));
result = 1;
} catch (e) {
} catch (_e) {
result = 2;
}
assertEquals(result, 1);