Skip to content

Commit

Permalink
[Docs Site] Bump typescript from 5.6.3 to 5.7.2 (#18453)
Browse files Browse the repository at this point in the history
* [Docs Site] Bump typescript from 5.6.3 to 5.7.2

Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.3 to 5.7.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.7.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Remove unnecessary fragment

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kian Newman-Hazel <[email protected]>
  • Loading branch information
2 people authored and harshil1712 committed Dec 3, 2024
1 parent 7865c5f commit 0ef6ac9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"tailwindcss": "^3.4.15",
"tippy.js": "^6.3.7",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript": "^5.7.2",
"unist-util-visit": "^5.0.0",
"vitest": "2.1.5",
"wrangler": "^3.87.0",
Expand Down
6 changes: 2 additions & 4 deletions src/components/ExternalResources.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ filtered.sort((a, b) => Number(b.updated) - Number(a.updated));
const title = "name" in entry ? entry.name : entry.title;
return (
<li>
<>
<a href={entry.link}>{title}:</a>
<span>{entry.description}</span>
</>
<a href={entry.link}>{title}:</a>
<span>{entry.description}</span>
</li>
);
})
Expand Down

0 comments on commit 0ef6ac9

Please sign in to comment.