Skip to content

Commit

Permalink
chore(repo): update nx to 15.0.7-rc.0 (#12952)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz committed Nov 2, 2022
1 parent c3db8e6 commit 87b91a3
Show file tree
Hide file tree
Showing 26 changed files with 832 additions and 798 deletions.
13 changes: 6 additions & 7 deletions nx-dev/feature-package-schema-viewer/src/lib/content.tsx
Expand Up @@ -114,13 +114,12 @@ export function Content({
)}
</div>
<div className="relative z-0 inline-flex flex-shrink-0 rounded-md shadow-sm">
<Link href={schemaViewModel.packageUrl}>
<a
title="See package information"
className="relative inline-flex items-center rounded-l-md border border-slate-200 bg-white px-4 py-2 text-xs font-medium text-slate-600 focus-within:ring-blue-500 hover:bg-slate-50 focus:z-10 focus:outline-none focus:ring-1 dark:border-slate-700 dark:bg-slate-800/60 dark:text-slate-400 dark:focus-within:ring-sky-500 dark:hover:bg-slate-800"
>
{schemaViewModel.packageName}
</a>
<Link
href={schemaViewModel.packageUrl}
title="See package information"
className="relative inline-flex items-center rounded-l-md border border-slate-200 bg-white px-4 py-2 text-xs font-medium text-slate-600 focus-within:ring-blue-500 hover:bg-slate-50 focus:z-10 focus:outline-none focus:ring-1 dark:border-slate-700 dark:bg-slate-800/60 dark:text-slate-400 dark:focus-within:ring-sky-500 dark:hover:bg-slate-800"
>
{schemaViewModel.packageName}
</Link>
<a
href={schemaViewModel.schemaGithubUrl}
Expand Down
Expand Up @@ -85,11 +85,9 @@ function GuideListItem({ guide }: { guide: MenuItem }) {
</div>
<div className="ml-3 py-2">
<p className="text-sm font-bold">
<Link href={guide.path as string}>
<a className="focus:outline-none">
<span className="absolute inset-0" aria-hidden="true"></span>
{guide.name}
</a>
<Link href={guide.path as string} className="focus:outline-none">
<span className="absolute inset-0" aria-hidden="true"></span>
{guide.name}
</Link>
</p>
</div>
Expand Down Expand Up @@ -120,11 +118,12 @@ function SchemaListItem({
</div>
<div className="ml-3 py-2">
<p className="text-sm font-bold">
<Link href={`/packages/${packageName}/${type}/${schema.name}`}>
<a className="focus:outline-none">
<span className="absolute inset-0" aria-hidden="true"></span>
{schema.name}
</a>
<Link
href={`/packages/${packageName}/${type}/${schema.name}`}
className="focus:outline-none"
>
<span className="absolute inset-0" aria-hidden="true"></span>
{schema.name}
</Link>

{schema.hidden && (
Expand Down Expand Up @@ -160,11 +159,14 @@ function EmptyList({
</div>
<div className="ml-3 py-2">
<p className="text-sm font-medium">
<Link href="https://github.com/nrwl/nx/discussions">
<a className="focus:outline-none" rel="noreferrer" target="_blank">
<span className="absolute inset-0" aria-hidden="true"></span>
No {type} available for this package yet!
</a>
<Link
href="https://github.com/nrwl/nx/discussions"
className="focus:outline-none"
rel="noreferrer"
target="_blank"
>
<span className="absolute inset-0" aria-hidden="true"></span>No
{type}available for this package yet!
</Link>
</p>
<div className="prose prose-slate dark:prose-invert prose-sm">
Expand Down
6 changes: 1 addition & 5 deletions nx-dev/feature-search/src/lib/algolia-search.tsx
Expand Up @@ -20,11 +20,7 @@ function Hit({
hit: InternalDocSearchHit | StoredDocSearchHit;
children: ReactNode;
}): JSX.Element {
return (
<Link href={hit.url}>
<a>{children}</a>
</Link>
);
return <Link href={hit.url}>{children}</Link>;
}

export function AlgoliaSearch({
Expand Down
30 changes: 14 additions & 16 deletions nx-dev/nx-dev/pages/404.tsx
Expand Up @@ -33,24 +33,22 @@ export function FourOhFour(): JSX.Element {
</p>
<p className="mt-2 text-lg">
You can return to{' '}
<Link href="/">
<a
title="Go to the home page"
className="font-semibold underline"
>
our front page
</a>
<Link
href="/"
title="Go to the home page"
className="font-semibold underline"
>
our front page
</Link>
, or{' '}
<Link href="https://github.com/nrwl/nx/issues/new?assignees=&labels=type%3A+docs&template=3-documentation.md">
<a
target="_blank"
rel="noreferrer"
className="font-semibold underline"
title="Create a Github issue"
>
drop us a line
</a>
<Link
href="https://github.com/nrwl/nx/issues/new?assignees=&labels=type%3A+docs&template=3-documentation.md"
target="_blank"
rel="noreferrer"
className="font-semibold underline"
title="Create a Github issue"
>
drop us a line
</Link>{' '}
if you can't find what you're looking for.
</p>
Expand Down
30 changes: 14 additions & 16 deletions nx-dev/nx-dev/pages/500.tsx
Expand Up @@ -22,24 +22,22 @@ export default function FiveOhOh(): JSX.Element {
</p>
<p className="mt-2 text-lg">
You can return to{' '}
<Link href="/">
<a
title="Go to the home page"
className="font-semibold underline"
>
our front page
</a>
<Link
href="/"
title="Go to the home page"
className="font-semibold underline"
>
our front page
</Link>
, or{' '}
<Link href="https://github.com/nrwl/nx/issues/new?assignees=&labels=type%3A+docs&template=3-documentation.md">
<a
target="_blank"
rel="noreferrer"
className="font-semibold underline"
title="Create a Github issue"
>
drop us a line
</a>
<Link
href="https://github.com/nrwl/nx/issues/new?assignees=&labels=type%3A+docs&template=3-documentation.md"
target="_blank"
rel="noreferrer"
className="font-semibold underline"
title="Create a Github issue"
>
drop us a line
</Link>{' '}
if you can't find what you're looking for.
</p>
Expand Down

1 comment on commit 87b91a3

@vercel
Copy link

@vercel vercel bot commented on 87b91a3 Nov 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx.dev
nx-dev-git-master-nrwl.vercel.app

Please sign in to comment.