The Node.js® Website

fix: Change link to point to npm release notes (#6484)

* fix: link to npm release notes

Signed-off-by: Steven <steven@ceriously.com>

* fixed prettier

---------

Signed-off-by: Steven <steven@ceriously.com>
Co-authored-by: Claudio Wunder <cwunder@gnome.org>

authored by Steven Claudio Wunder and committed by GitHub 910c750f 591fc5c0

Changed files
+3 -1
components
Downloads
Release
+3 -1
components/Downloads/Release/NpmLink.tsx
··· 10 10 const { release } = useContext(ReleaseContext); 11 11 12 12 return ( 13 - <LinkWithArrow href={`https://www.npmjs.com/package/npm/v/${release.npm}`}> 13 + <LinkWithArrow 14 + href={`https://github.com/npm/cli/releases/tag/v${release.npm}`} 15 + > 14 16 npm ({release.npm}) 15 17 </LinkWithArrow> 16 18 );