Skip to content

Commit

Permalink
ref(build): Update to TypeScript 3.8.3 (#4491)
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie authored Feb 3, 2022
1 parent 9ca911b commit ab2c8c6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"size-limit": "^4.5.5",
"ts-jest": "^24.3.0",
"typedoc": "^0.18.0",
"typescript": "3.7.5"
"typescript": "3.8.3"
},
"resolutions": {
"**/agent-base": "5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sentryTest('should finish pageload transaction when the page goes background', a

await page.goto(url);

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

const pageloadTransaction = await getSentryTransactionRequest(page);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ sentryTest('should capture a FID vital.', async ({ browserName, getLocalTestPath

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

page.goto(url);
await page.goto(url);
// To trigger FID
page.click('#fid-btn');
await page.click('#fid-btn');

const eventData = await getSentryTransactionRequest(page);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ sentryTest('should capture a LCP vital with element details.', async ({ browserN
);

const url = await getLocalTestPath({ testDir: __dirname });
page.goto(url);
await page.goto(url);

// Force closure of LCP listener.
page.click('body');
await page.click('body');
const eventData = await getSentryTransactionRequest(page);

expect(eventData.measurements).toBeDefined();
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"peerDependencies": {
"tslint": "5.16.0",
"typescript": "3.7.5"
"typescript": "3.8.3"
},
"scripts": {
"link:yarn": "yarn link",
Expand Down
2 changes: 1 addition & 1 deletion scripts/verify-packages-versions.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const pkg = require('../package.json');

const TYPESCRIPT_VERSION = '3.7.5';
const TYPESCRIPT_VERSION = '3.8.3';

if (pkg.devDependencies.typescript !== TYPESCRIPT_VERSION) {
console.error(`
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21065,10 +21065,10 @@ typescript-memoize@^1.0.1:
resolved "https://registry.yarnpkg.com/typescript-memoize/-/typescript-memoize-1.0.1.tgz#0a8199aa28f6fe18517f6e9308ef7bfbe9a98d59"
integrity sha512-oJNge1qUrOK37d5Y6Ly2txKeuelYVsFtNF6U9kXIN7juudcQaHJQg2MxLOy0CqtkW65rVDYuTCOjnSIVPd8z3w==

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

typescript@^3.9.5, typescript@^3.9.7:
version "3.9.9"
Expand Down

0 comments on commit ab2c8c6

Please sign in to comment.