Skip to content

Commit ab2c8c6

Browse files
authored
ref(build): Update to TypeScript 3.8.3 (#4491)
1 parent 9ca911b commit ab2c8c6

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"size-limit": "^4.5.5",
7676
"ts-jest": "^24.3.0",
7777
"typedoc": "^0.18.0",
78-
"typescript": "3.7.5"
78+
"typescript": "3.8.3"
7979
},
8080
"resolutions": {
8181
"**/agent-base": "5",

packages/integration-tests/suites/tracing/browsertracing/backgroundtab-pageload/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sentryTest('should finish pageload transaction when the page goes background', a
88

99
await page.goto(url);
1010

11-
page.click('#go-background');
11+
void page.click('#go-background');
1212

1313
const pageloadTransaction = await getSentryTransactionRequest(page);
1414

packages/integration-tests/suites/tracing/metrics/web-vitals-fid/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ sentryTest('should capture a FID vital.', async ({ browserName, getLocalTestPath
1111

1212
const url = await getLocalTestPath({ testDir: __dirname });
1313

14-
page.goto(url);
14+
await page.goto(url);
1515
// To trigger FID
16-
page.click('#fid-btn');
16+
await page.click('#fid-btn');
1717

1818
const eventData = await getSentryTransactionRequest(page);
1919

packages/integration-tests/suites/tracing/metrics/web-vitals-lcp/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ sentryTest('should capture a LCP vital with element details.', async ({ browserN
1313
);
1414

1515
const url = await getLocalTestPath({ testDir: __dirname });
16-
page.goto(url);
16+
await page.goto(url);
1717

1818
// Force closure of LCP listener.
19-
page.click('body');
19+
await page.click('body');
2020
const eventData = await getSentryTransactionRequest(page);
2121

2222
expect(eventData.measurements).toBeDefined();

packages/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"peerDependencies": {
1818
"tslint": "5.16.0",
19-
"typescript": "3.7.5"
19+
"typescript": "3.8.3"
2020
},
2121
"scripts": {
2222
"link:yarn": "yarn link",

scripts/verify-packages-versions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const pkg = require('../package.json');
22

3-
const TYPESCRIPT_VERSION = '3.7.5';
3+
const TYPESCRIPT_VERSION = '3.8.3';
44

55
if (pkg.devDependencies.typescript !== TYPESCRIPT_VERSION) {
66
console.error(`

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21065,10 +21065,10 @@ typescript-memoize@^1.0.1:
2106521065
resolved "https://registry.yarnpkg.com/typescript-memoize/-/typescript-memoize-1.0.1.tgz#0a8199aa28f6fe18517f6e9308ef7bfbe9a98d59"
2106621066
integrity sha512-oJNge1qUrOK37d5Y6Ly2txKeuelYVsFtNF6U9kXIN7juudcQaHJQg2MxLOy0CqtkW65rVDYuTCOjnSIVPd8z3w==
2106721067

21068-
typescript@3.7.5:
21069-
version "3.7.5"
21070-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.5.tgz#0692e21f65fd4108b9330238aac11dd2e177a1ae"
21071-
integrity sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw==
21068+
typescript@3.8.3:
21069+
version "3.8.3"
21070+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061"
21071+
integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==
2107221072

2107321073
typescript@^3.9.5, typescript@^3.9.7:
2107421074
version "3.9.9"

0 commit comments

Comments
 (0)