Skip to content

Commit

Permalink
Update to typescript 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ecraig12345 committed Jul 13, 2023
1 parent f42d4c4 commit bf329e2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions change/beachball-47472917-5374-4d55-a134-51a4ddbefa85.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "Update to typescript 4.5",
"packageName": "beachball",
"email": "elcraig@microsoft.com",
"dependentChangeType": "patch"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"strip-ansi": "^6.0.1",
"tmp": "^0.2.1",
"ts-jest": "^29.0.0",
"typescript": "~4.3.5",
"typescript": "~4.5.0",
"verdaccio": "^4.13.2",
"verdaccio-auth-memory": "^10.2.0",
"verdaccio-memory": "^10.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/publish/toposortPackages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ export function toposortPackages(packages: string[], packageInfos: PackageInfos)
try {
return toposort(dependencyGraph).filter((pkg): pkg is string => !!pkg);
} catch (err) {
throw new Error(`Failed to topologically sort packages: ${err?.message}`);
throw new Error(`Failed to topologically sort packages: ${(err as Error)?.message}`);
}
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10880,10 +10880,10 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==

typescript@~4.3.5:
version "4.3.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==
typescript@~4.5.0:
version "4.5.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.5.5.tgz#d8c953832d28924a9e3d37c73d729c846c5896f3"
integrity sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==

uc.micro@^1.0.1, uc.micro@^1.0.5:
version "1.0.6"
Expand Down

0 comments on commit bf329e2

Please sign in to comment.