Skip to content

Commit f099473

Browse files
[Docs Site] Bump typescript from 5.6.3 to 5.7.2 (#18453)
* [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]>
1 parent fc69f90 commit f099473

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"tailwindcss": "^3.4.15",
9191
"tippy.js": "^6.3.7",
9292
"tsx": "^4.19.2",
93-
"typescript": "^5.6.3",
93+
"typescript": "^5.7.2",
9494
"unist-util-visit": "^5.0.0",
9595
"vitest": "2.1.5",
9696
"wrangler": "^3.87.0",

src/components/ExternalResources.astro

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ filtered.sort((a, b) => Number(b.updated) - Number(a.updated));
3434
const title = "name" in entry ? entry.name : entry.title;
3535
return (
3636
<li>
37-
<>
38-
<a href={entry.link}>{title}:</a>
39-
<span>{entry.description}</span>
40-
</>
37+
<a href={entry.link}>{title}:</a>
38+
<span>{entry.description}</span>
4139
</li>
4240
);
4341
})

0 commit comments

Comments
 (0)