chore(repo): update nx to 15.0.7-rc.0 (#12952)
This commit is contained in:
parent
c3db8e6070
commit
87b91a391a
@ -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}
|
||||
|
||||
@ -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>
|
||||
@ -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 && (
|
||||
@ -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">
|
||||
|
||||
@ -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({
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -107,25 +107,25 @@ export default function ConfPage(): JSX.Element {
|
||||
Workshops will be available on Oct. 16, 18.
|
||||
</p>
|
||||
{/* <a
|
||||
className="font-input-mono group flex w-full items-center text-blue-500 dark:text-sky-500 sm:text-xl"
|
||||
href="https://ti.to/nx-conf/nx-conf-2022?utm_source=nxdev"
|
||||
className="font-input-mono group flex w-full items-center text-blue-500 dark:text-sky-500 sm:text-xl"
|
||||
href="https://ti.to/nx-conf/nx-conf-2022?utm_source=nxdev"
|
||||
>
|
||||
<span className="group-hover:underline">Register now</span>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className="ml-1 h-8 w-8 transform-gpu transition duration-200 ease-out group-hover:translate-x-2 "
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
>
|
||||
<span className="group-hover:underline">Register now</span>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className="ml-1 h-8 w-8 transform-gpu transition duration-200 ease-out group-hover:translate-x-2 "
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M13 7l5 5m0 0l-5 5m5-5H6"
|
||||
/>
|
||||
</svg>
|
||||
</a> */}
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M13 7l5 5m0 0l-5 5m5-5H6"
|
||||
/>
|
||||
</svg>
|
||||
</a> */}
|
||||
<a
|
||||
className="font-input-mono group flex w-full items-center text-blue-500 dark:text-sky-500 sm:text-xl"
|
||||
href="https://www.youtube.com/watch?v=-g3NABhePJg"
|
||||
@ -147,29 +147,29 @@ export default function ConfPage(): JSX.Element {
|
||||
</svg>
|
||||
</a>
|
||||
{/*<div className="mt-16 flex">
|
||||
<a
|
||||
className="font-input-mono group flex w-full items-center justify-end sm:text-2xl"
|
||||
href="https://youtu.be/iIZOfV0GFmU"
|
||||
<a
|
||||
className="font-input-mono group flex w-full items-center justify-end sm:text-2xl"
|
||||
href="https://youtu.be/iIZOfV0GFmU"
|
||||
>
|
||||
<span className="group-hover:underline">
|
||||
Replay Available Watch Now
|
||||
</span>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className="ml-1 h-8 w-8 transform-gpu transition duration-200 ease-out group-hover:translate-x-2 "
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
>
|
||||
<span className="group-hover:underline">
|
||||
Replay Available Watch Now
|
||||
</span>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className="ml-1 h-8 w-8 transform-gpu transition duration-200 ease-out group-hover:translate-x-2 "
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M13 7l5 5m0 0l-5 5m5-5H6"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
</div>*/}
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M13 7l5 5m0 0l-5 5m5-5H6"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
</div>*/}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -200,30 +200,35 @@ export default function ConfPage(): JSX.Element {
|
||||
<path d="M97.3489 60.8158L113.327 84.8056H124.872L103.431 52.7494L125.284 21.9504H113.842L98.2767 44.9973L82.9176 21.9504H71.3725L92.298 53.2732L70.6509 84.8056H82.0929L97.3489 60.8158Z" />
|
||||
</svg>
|
||||
</div>
|
||||
<Link href="#agenda">
|
||||
<a className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
Agenda
|
||||
</a>
|
||||
<Link
|
||||
href="#agenda"
|
||||
className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800"
|
||||
>
|
||||
Agenda
|
||||
</Link>
|
||||
<Link href="#speakers">
|
||||
<a className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
Speakers
|
||||
</a>
|
||||
<Link
|
||||
href="#speakers"
|
||||
className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800"
|
||||
>
|
||||
Speakers
|
||||
</Link>
|
||||
<Link href="#workshop">
|
||||
<a className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
Workshop
|
||||
</a>
|
||||
<Link
|
||||
href="#workshop"
|
||||
className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800"
|
||||
>
|
||||
Workshop
|
||||
</Link>
|
||||
<Link href="#location">
|
||||
<a className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
Location
|
||||
</a>
|
||||
<Link
|
||||
href="#location"
|
||||
className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800"
|
||||
>
|
||||
Location
|
||||
</Link>
|
||||
<Link href="#health-and-safety">
|
||||
<a className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
Health & Safety
|
||||
</a>
|
||||
<Link
|
||||
href="#health-and-safety"
|
||||
className="cursor-pointer bg-white/40 py-8 transition hover:bg-white dark:bg-slate-800/60 dark:hover:bg-slate-800"
|
||||
>
|
||||
Health & Safety
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
@ -278,159 +283,159 @@ export default function ConfPage(): JSX.Element {
|
||||
</div>
|
||||
<ConfHealthAndSafety />
|
||||
{/*SPONSORS
|
||||
<div className="mx-auto max-w-screen-lg px-5 py-5 xl:max-w-screen-xl">
|
||||
<div className="mt-24">
|
||||
<h2 id="sponsors" className="font-input-mono my-20 text-3xl">
|
||||
Sponsors
|
||||
</h2>
|
||||
</div>
|
||||
<div className="mx-auto max-w-screen-lg px-5 py-5 xl:max-w-screen-xl">
|
||||
<div className="mt-24">
|
||||
<h2 id="sponsors" className="font-input-mono my-20 text-3xl">
|
||||
Sponsors
|
||||
</h2>
|
||||
</div>
|
||||
<ConfSponsors />*/}
|
||||
</div>
|
||||
<ConfSponsors />*/}
|
||||
{/*<div className="mx-auto max-w-screen-lg px-5 py-5 xl:max-w-screen-xl">
|
||||
SPONSORS
|
||||
<div className="my-24">
|
||||
<h2 id="sponsors" className="my-20 text-3xl font-input-mono">
|
||||
Sponsors
|
||||
</h2>
|
||||
<div className="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 gap-8">
|
||||
<div>
|
||||
<svg viewBox="0 0 262 163" className="w-16">
|
||||
<polygon
|
||||
id="Path"
|
||||
fill="#ffffff"
|
||||
points="130.68 104.59 97.49 52.71 97.44 96.3 40.24 0 0 0 0 162.57 39.79 162.57 39.92 66.39 96.53 158.26"
|
||||
/>
|
||||
<polygon
|
||||
id="Path"
|
||||
fill="#ffffff"
|
||||
points="97.5 41.79 137.24 41.79 137.33 41.33 137.33 0 97.54 0 97.49 41.33"
|
||||
/>
|
||||
<path
|
||||
d="M198.66,86.86 C189.139872,86.6795216 180.538723,92.516445 177.19,101.43 C182.764789,93.0931021 193.379673,89.7432211 202.73,93.37 C207.05,95.13 212.73,97.97 217.23,96.45 C212.950306,90.4438814 206.034895,86.8725952 198.66,86.86 L198.66,86.86 Z"
|
||||
id="Path"
|
||||
fill="#96D8E9"
|
||||
/>
|
||||
<path
|
||||
d="M243.75,106.42 C243.75,101.55 241.1,100.42 235.6,98.42 C231.52,97 226.89,95.4 223.52,91 C222.86,90.13 222.25,89.15 221.6,88.11 C220.14382,85.4164099 218.169266,83.037429 215.79,81.11 C212.58,78.75 208.37,77.6 202.91,77.6 C191.954261,77.6076705 182.084192,84.2206169 177.91,94.35 C183.186964,87.0278244 191.956716,83.0605026 200.940147,83.9314609 C209.923578,84.8024193 217.767888,90.3805017 221.54,98.58 C223.424615,101.689762 227.141337,103.174819 230.65,102.22 C236.02,101.07 235.65,106.15 243.76,107.87 L243.75,106.42 Z"
|
||||
id="Path"
|
||||
fill="#48C4E5"
|
||||
/>
|
||||
<path
|
||||
d="M261.46,105.38 L261.46,105.27 C261.34,73.03 235.17,45.45 202.91,45.45 C183.207085,45.4363165 164.821777,55.3450614 154,71.81 L153.79,71.45 L137.23,45.45 L97.5,45.4499858 L135.25,104.57 L98.41,162.57 L137,162.57 L153.79,136.78 L170.88,162.57 L209.48,162.57 L174.48,107.49 C173.899005,106.416838 173.583536,105.220114 173.56,104 C173.557346,96.2203871 176.64661,88.7586448 182.147627,83.2576275 C187.648645,77.7566101 195.110387,74.6673462 202.89,74.67 C219.11,74.67 221.82,84.37 225.32,88.93 C232.23,97.93 246.03,93.99 246.03,105.73 L246.03,105.73 C246.071086,108.480945 247.576662,111.001004 249.979593,112.340896 C252.382524,113.680787 255.317747,113.636949 257.679593,112.225896 C260.041438,110.814842 261.471086,108.250945 261.43,105.5 L261.43,105.5 L261.43,105.38 L261.46,105.38 Z"
|
||||
id="Path"
|
||||
fill="#ffffff"
|
||||
/>
|
||||
<path
|
||||
d="M261.5,113.68 C261.892278,116.421801 261.504116,119.218653 260.38,121.75 C258.18,126.84 254.51,125.14 254.51,125.14 C254.51,125.14 251.35,123.6 253.27,120.65 C255.4,117.36 259.61,117.74 261.5,113.68 Z"
|
||||
id="Path"
|
||||
fill="#022f56"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 402.35 125.53"
|
||||
>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_1-2" data-name="Layer 1">
|
||||
<g
|
||||
id="Color_on_white_horizontal"
|
||||
data-name="Color on white horizontal"
|
||||
>
|
||||
<g id="LOGO">
|
||||
<polygon
|
||||
points="123.6 110.85 123.6 125.53 146.69 125.53 146.69 113.02 123.6 110.85"
|
||||
fill="#fff"
|
||||
/>
|
||||
<g id="whale">
|
||||
<g id="bdy">
|
||||
SPONSORS
|
||||
<div className="my-24">
|
||||
<h2 id="sponsors" className="my-20 text-3xl font-input-mono">
|
||||
Sponsors
|
||||
</h2>
|
||||
<div className="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 gap-8">
|
||||
<div>
|
||||
<svg viewBox="0 0 262 163" className="w-16">
|
||||
<polygon
|
||||
id="Path"
|
||||
fill="#ffffff"
|
||||
points="130.68 104.59 97.49 52.71 97.44 96.3 40.24 0 0 0 0 162.57 39.79 162.57 39.92 66.39 96.53 158.26"
|
||||
/>
|
||||
<polygon
|
||||
id="Path"
|
||||
fill="#ffffff"
|
||||
points="97.5 41.79 137.24 41.79 137.33 41.33 137.33 0 97.54 0 97.49 41.33"
|
||||
/>
|
||||
<path
|
||||
d="M198.66,86.86 C189.139872,86.6795216 180.538723,92.516445 177.19,101.43 C182.764789,93.0931021 193.379673,89.7432211 202.73,93.37 C207.05,95.13 212.73,97.97 217.23,96.45 C212.950306,90.4438814 206.034895,86.8725952 198.66,86.86 L198.66,86.86 Z"
|
||||
id="Path"
|
||||
fill="#96D8E9"
|
||||
/>
|
||||
<path
|
||||
d="M243.75,106.42 C243.75,101.55 241.1,100.42 235.6,98.42 C231.52,97 226.89,95.4 223.52,91 C222.86,90.13 222.25,89.15 221.6,88.11 C220.14382,85.4164099 218.169266,83.037429 215.79,81.11 C212.58,78.75 208.37,77.6 202.91,77.6 C191.954261,77.6076705 182.084192,84.2206169 177.91,94.35 C183.186964,87.0278244 191.956716,83.0605026 200.940147,83.9314609 C209.923578,84.8024193 217.767888,90.3805017 221.54,98.58 C223.424615,101.689762 227.141337,103.174819 230.65,102.22 C236.02,101.07 235.65,106.15 243.76,107.87 L243.75,106.42 Z"
|
||||
id="Path"
|
||||
fill="#48C4E5"
|
||||
/>
|
||||
<path
|
||||
d="M261.46,105.38 L261.46,105.27 C261.34,73.03 235.17,45.45 202.91,45.45 C183.207085,45.4363165 164.821777,55.3450614 154,71.81 L153.79,71.45 L137.23,45.45 L97.5,45.4499858 L135.25,104.57 L98.41,162.57 L137,162.57 L153.79,136.78 L170.88,162.57 L209.48,162.57 L174.48,107.49 C173.899005,106.416838 173.583536,105.220114 173.56,104 C173.557346,96.2203871 176.64661,88.7586448 182.147627,83.2576275 C187.648645,77.7566101 195.110387,74.6673462 202.89,74.67 C219.11,74.67 221.82,84.37 225.32,88.93 C232.23,97.93 246.03,93.99 246.03,105.73 L246.03,105.73 C246.071086,108.480945 247.576662,111.001004 249.979593,112.340896 C252.382524,113.680787 255.317747,113.636949 257.679593,112.225896 C260.041438,110.814842 261.471086,108.250945 261.43,105.5 L261.43,105.5 L261.43,105.38 L261.46,105.38 Z"
|
||||
id="Path"
|
||||
fill="#ffffff"
|
||||
/>
|
||||
<path
|
||||
d="M261.5,113.68 C261.892278,116.421801 261.504116,119.218653 260.38,121.75 C258.18,126.84 254.51,125.14 254.51,125.14 C254.51,125.14 251.35,123.6 253.27,120.65 C255.4,117.36 259.61,117.74 261.5,113.68 Z"
|
||||
id="Path"
|
||||
fill="#022f56"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 402.35 125.53"
|
||||
>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_1-2" data-name="Layer 1">
|
||||
<g
|
||||
id="Color_on_white_horizontal"
|
||||
data-name="Color on white horizontal"
|
||||
>
|
||||
<g id="LOGO">
|
||||
<polygon
|
||||
points="123.6 110.85 123.6 125.53 146.69 125.53 146.69 113.02 123.6 110.85"
|
||||
fill="#fff"
|
||||
/>
|
||||
<g id="whale">
|
||||
<g id="bdy">
|
||||
<path
|
||||
id="tusk"
|
||||
d="M91.09,105.22a3,3,0,0,1,3-3h.27a1.86,1.86,0,0,1,.63.12L165.45,115l-71.81-6.75h0A3,3,0,0,1,91.09,105.22Z"
|
||||
fill="#48c4e5"
|
||||
/>
|
||||
<path
|
||||
d="M124,50.79h-.19C119,50,114.3,46.49,112.7,42h0a57.4,57.4,0,1,0-72.37,70.24A74.28,74.28,0,0,0,90.41,109c3.78-1.79,4.45-4.63,4.45-6.48s-1.64-3.07-2.24-3.89a2.25,2.25,0,0,1-.54-1.18h0a27.51,27.51,0,0,0-27.44-25.6H62.87a23.35,23.35,0,0,1-16.68-39.7,30.15,30.15,0,0,1,22-9.42A30.57,30.57,0,0,1,97.76,45.39a15.33,15.33,0,0,1-9.11,5.36A15.15,15.15,0,0,0,76.31,63.29c5.88,0,9.79,8,20.71,8a9.9,9.9,0,0,0,9.18-6.16,9.93,9.93,0,0,0,9.19,6.16,19.63,19.63,0,0,0,8.56-1.9Zm-64.79,48c.35-1.46,1.52-.84,3.06-.46s2.86.36,2.51,1.81a2.87,2.87,0,0,1-5.57-1.35Z"
|
||||
fill="#48c4e5"
|
||||
/>
|
||||
<g id="right_fin" data-name="right fin">
|
||||
<path
|
||||
id="tusk"
|
||||
d="M91.09,105.22a3,3,0,0,1,3-3h.27a1.86,1.86,0,0,1,.63.12L165.45,115l-71.81-6.75h0A3,3,0,0,1,91.09,105.22Z"
|
||||
d="M52.51,69.4A9.4,9.4,0,0,1,60.85,62h0A8.43,8.43,0,0,0,64,68.72,8.45,8.45,0,0,1,67,72v3H52.51Z"
|
||||
fill="#48c4e5"
|
||||
/>
|
||||
<path
|
||||
d="M124,50.79h-.19C119,50,114.3,46.49,112.7,42h0a57.4,57.4,0,1,0-72.37,70.24A74.28,74.28,0,0,0,90.41,109c3.78-1.79,4.45-4.63,4.45-6.48s-1.64-3.07-2.24-3.89a2.25,2.25,0,0,1-.54-1.18h0a27.51,27.51,0,0,0-27.44-25.6H62.87a23.35,23.35,0,0,1-16.68-39.7,30.15,30.15,0,0,1,22-9.42A30.57,30.57,0,0,1,97.76,45.39a15.33,15.33,0,0,1-9.11,5.36A15.15,15.15,0,0,0,76.31,63.29c5.88,0,9.79,8,20.71,8a9.9,9.9,0,0,0,9.18-6.16,9.93,9.93,0,0,0,9.19,6.16,19.63,19.63,0,0,0,8.56-1.9Zm-64.79,48c.35-1.46,1.52-.84,3.06-.46s2.86.36,2.51,1.81a2.87,2.87,0,0,1-5.57-1.35Z"
|
||||
fill="#48c4e5"
|
||||
/>
|
||||
<g id="right_fin" data-name="right fin">
|
||||
<path
|
||||
d="M52.51,69.4A9.4,9.4,0,0,1,60.85,62h0A8.43,8.43,0,0,0,64,68.72,8.45,8.45,0,0,1,67,72v3H52.51Z"
|
||||
fill="#48c4e5"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="highlights">
|
||||
<path
|
||||
d="M12.9,93.81A57.61,57.61,0,0,1,43.37,1.7C24.74,7,3.9,24,3.9,53.7c0,37.66,31.34,45,45.91,51.72,8.85,4.11,12,7.56,13.19,9.64H60.84a73.74,73.74,0,0,1-20.51-2.88c-6.84-2.07-14.65-6.64-20.1-10.93.77.11-3.85-2.6-8.39-8.82"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="24.58"
|
||||
cy="61.18"
|
||||
rx="1.95"
|
||||
ry="2.79"
|
||||
transform="translate(-13.17 7.12) rotate(-13.04)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="32.38"
|
||||
cy="72.47"
|
||||
rx="2.56"
|
||||
ry="3.66"
|
||||
transform="translate(-38.68 37.09) rotate(-39.46)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="31.51"
|
||||
cy="47.37"
|
||||
rx="2.79"
|
||||
ry="1.95"
|
||||
transform="translate(-17.99 75.41) rotate(-85.89)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="24.79"
|
||||
cy="51"
|
||||
rx="0.98"
|
||||
ry="1.4"
|
||||
transform="translate(-2.13 1.09) rotate(-2.42)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<path
|
||||
id="left_fin"
|
||||
data-name="left fin"
|
||||
d="M38.21,105.63a28.73,28.73,0,0,1-15,7.18q-1.22.18-2.46.27A28.61,28.61,0,0,1,16,113h0a35,35,0,0,0-5.7-.1,33.41,33.41,0,0,0-9.48,2h0A11.66,11.66,0,0,1,11,99a11.45,11.45,0,0,1,6.55,1.5h0A11.92,11.92,0,0,0,24,102.06a11.51,11.51,0,0,0,5.8-2s1.34-1.17,4.5.87C38.92,103.91,38.21,105.63,38.21,105.63Z"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon
|
||||
points="179.78 43.53 179.78 87.23 143 43.53 123.6 43.53 123.6 103.07 146.69 108.53 146.69 81.84 183.47 125.53 202.87 125.53 202.87 43.53 179.78 43.53"
|
||||
fill="#fff"
|
||||
/>
|
||||
<path
|
||||
d="M244.5,63.16A34.49,34.49,0,0,1,257.18,61V81a49.24,49.24,0,0,0-5.15-.3q-7.26,0-11.37,3.86t-4.08,11.84v29.16H214V62h21.54v7.62A21,21,0,0,1,244.5,63.16Z"
|
||||
fill="#fff"
|
||||
/>
|
||||
<path
|
||||
d="M362.19,62l-18.35,63.49h-21.9l-7.53-29.1-8,29.1h-21.9L266.16,62h21.43l8.59,32.06L305.25,62h19.28l8.71,32.41L342.31,62Z"
|
||||
fill="#fff"
|
||||
/>
|
||||
<path
|
||||
d="M393.31,28.61H370.64v74c0,19.88,12.84,22.41,24.89,22.41,3.67,0,6.82-.35,6.82-.35V107.41s-1.31.12-2.75.12c-5.11,0-6.29-2-6.29-7.59Z"
|
||||
fill="#fff"
|
||||
/>
|
||||
<g id="highlights">
|
||||
<path
|
||||
d="M12.9,93.81A57.61,57.61,0,0,1,43.37,1.7C24.74,7,3.9,24,3.9,53.7c0,37.66,31.34,45,45.91,51.72,8.85,4.11,12,7.56,13.19,9.64H60.84a73.74,73.74,0,0,1-20.51-2.88c-6.84-2.07-14.65-6.64-20.1-10.93.77.11-3.85-2.6-8.39-8.82"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="24.58"
|
||||
cy="61.18"
|
||||
rx="1.95"
|
||||
ry="2.79"
|
||||
transform="translate(-13.17 7.12) rotate(-13.04)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="32.38"
|
||||
cy="72.47"
|
||||
rx="2.56"
|
||||
ry="3.66"
|
||||
transform="translate(-38.68 37.09) rotate(-39.46)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="31.51"
|
||||
cy="47.37"
|
||||
rx="2.79"
|
||||
ry="1.95"
|
||||
transform="translate(-17.99 75.41) rotate(-85.89)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<ellipse
|
||||
cx="24.79"
|
||||
cy="51"
|
||||
rx="0.98"
|
||||
ry="1.4"
|
||||
transform="translate(-2.13 1.09) rotate(-2.42)"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
<path
|
||||
id="left_fin"
|
||||
data-name="left fin"
|
||||
d="M38.21,105.63a28.73,28.73,0,0,1-15,7.18q-1.22.18-2.46.27A28.61,28.61,0,0,1,16,113h0a35,35,0,0,0-5.7-.1,33.41,33.41,0,0,0-9.48,2h0A11.66,11.66,0,0,1,11,99a11.45,11.45,0,0,1,6.55,1.5h0A11.92,11.92,0,0,0,24,102.06a11.51,11.51,0,0,0,5.8-2s1.34-1.17,4.5.87C38.92,103.91,38.21,105.63,38.21,105.63Z"
|
||||
fill="#96d8e9"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon
|
||||
points="179.78 43.53 179.78 87.23 143 43.53 123.6 43.53 123.6 103.07 146.69 108.53 146.69 81.84 183.47 125.53 202.87 125.53 202.87 43.53 179.78 43.53"
|
||||
fill="#fff"
|
||||
/>
|
||||
<path
|
||||
d="M244.5,63.16A34.49,34.49,0,0,1,257.18,61V81a49.24,49.24,0,0,0-5.15-.3q-7.26,0-11.37,3.86t-4.08,11.84v29.16H214V62h21.54v7.62A21,21,0,0,1,244.5,63.16Z"
|
||||
fill="#fff"
|
||||
/>
|
||||
<path
|
||||
d="M362.19,62l-18.35,63.49h-21.9l-7.53-29.1-8,29.1h-21.9L266.16,62h21.43l8.59,32.06L305.25,62h19.28l8.71,32.41L342.31,62Z"
|
||||
fill="#fff"
|
||||
/>
|
||||
<path
|
||||
d="M393.31,28.61H370.64v74c0,19.88,12.84,22.41,24.89,22.41,3.67,0,6.82-.35,6.82-.35V107.41s-1.31.12-2.75.12c-5.11,0-6.29-2-6.29-7.59Z"
|
||||
fill="#fff"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</div>
|
||||
</g>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</div>*/}
|
||||
</div>
|
||||
</div>*/}
|
||||
</div>
|
||||
</main>
|
||||
<Footer />
|
||||
@ -439,11 +444,11 @@ export default function ConfPage(): JSX.Element {
|
||||
strategy="afterInteractive"
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
!function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
|
||||
},s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='https://static.ads-twitter.com/uwt.js',
|
||||
a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
|
||||
twq('config','obtp4');
|
||||
`,
|
||||
!function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
|
||||
},s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='https://static.ads-twitter.com/uwt.js',
|
||||
a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
|
||||
twq('config','obtp4');
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
</>
|
||||
|
||||
@ -91,20 +91,18 @@ export default function Packages(props: ReferencesProps): JSX.Element {
|
||||
<Link
|
||||
key={'ref-' + category.id}
|
||||
href={category.path as string}
|
||||
className="group relative flex items-center gap-3 rounded-md border border-slate-200 bg-slate-50/40 p-4 text-sm capitalize shadow-sm transition hover:bg-slate-50 dark:border-slate-800/40 dark:bg-slate-800/60 dark:hover:bg-slate-800"
|
||||
>
|
||||
<a className="group relative flex items-center gap-3 rounded-md border border-slate-200 bg-slate-50/40 p-4 text-sm capitalize shadow-sm transition hover:bg-slate-50 dark:border-slate-800/40 dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
<img
|
||||
className="h-5 w-5 object-cover opacity-75 dark:invert"
|
||||
loading="lazy"
|
||||
src={iconsMap[category.id]}
|
||||
alt={category.name + ' illustration'}
|
||||
aria-hidden="true"
|
||||
/>
|
||||
|
||||
<span className="text-base font-medium">
|
||||
{category.name}
|
||||
</span>
|
||||
</a>
|
||||
<img
|
||||
className="h-5 w-5 object-cover opacity-75 dark:invert"
|
||||
loading="lazy"
|
||||
src={iconsMap[category.id]}
|
||||
alt={category.name + ' illustration'}
|
||||
aria-hidden="true"
|
||||
/>
|
||||
<span className="text-base font-medium">
|
||||
{category.name}
|
||||
</span>
|
||||
</Link>
|
||||
))}
|
||||
</nav>
|
||||
|
||||
@ -7,10 +7,11 @@ export function AnnouncementBanner(): JSX.Element {
|
||||
<div className="text-center sm:px-16 sm:pr-16">
|
||||
<p className="text-sm font-medium">
|
||||
<span className="md:hidden">
|
||||
<Link href="/conf?utm_source=announcement-banner text-blue-500 dark:text-sky-500">
|
||||
<a className="underline">
|
||||
Nx Conf on October 17th in Phoenix AZ!
|
||||
</a>
|
||||
<Link
|
||||
href="/conf?utm_source=announcement-banner text-blue-500 dark:text-sky-500"
|
||||
className="underline"
|
||||
>
|
||||
Nx Conf on October 17th in Phoenix AZ!
|
||||
</Link>
|
||||
</span>
|
||||
<span className="hidden md:inline">
|
||||
@ -20,12 +21,13 @@ export function AnnouncementBanner(): JSX.Element {
|
||||
, do not miss it!
|
||||
</span>
|
||||
<span className="ml-2 inline-block">
|
||||
<Link href="/conf?utm_source=announcement-banner">
|
||||
<a className="font-semibold text-blue-500 underline dark:text-sky-500">
|
||||
<span className="absolute inset-0" aria-hidden="true" />{' '}
|
||||
Tickets, Speakers, Schedule and more{' '}
|
||||
<span aria-hidden="true">→</span>
|
||||
</a>
|
||||
<Link
|
||||
href="/conf?utm_source=announcement-banner"
|
||||
className="font-semibold text-blue-500 underline dark:text-sky-500"
|
||||
>
|
||||
<span className="absolute inset-0" aria-hidden="true" />{' '}
|
||||
Tickets, Speakers, Schedule and more{' '}
|
||||
<span aria-hidden="true">→</span>
|
||||
</Link>
|
||||
</span>
|
||||
</p>
|
||||
|
||||
@ -10,18 +10,18 @@ function Menu({ tabs }: { tabs: any[] }): JSX.Element {
|
||||
<div className="hidden sm:block">
|
||||
<nav className="-mb-px flex space-x-8" aria-label="Tabs">
|
||||
{tabs.map((tab) => (
|
||||
<Link key={tab.name} href={tab.href}>
|
||||
<a
|
||||
className={cx(
|
||||
tab.current
|
||||
? 'border-blue-500 text-blue-600 dark:border-sky-500 dark:text-sky-500'
|
||||
: 'border-transparent hover:text-slate-900 dark:hover:text-sky-400',
|
||||
'whitespace-nowrap border-b-2 py-2 text-sm font-medium'
|
||||
)}
|
||||
aria-current={tab.current ? 'page' : undefined}
|
||||
>
|
||||
{tab.name}
|
||||
</a>
|
||||
<Link
|
||||
key={tab.name}
|
||||
href={tab.href}
|
||||
className={cx(
|
||||
tab.current
|
||||
? 'border-blue-500 text-blue-600 dark:border-sky-500 dark:text-sky-500'
|
||||
: 'border-transparent hover:text-slate-900 dark:hover:text-sky-400',
|
||||
'whitespace-nowrap border-b-2 py-2 text-sm font-medium'
|
||||
)}
|
||||
aria-current={tab.current ? 'page' : undefined}
|
||||
>
|
||||
{tab.name}
|
||||
</Link>
|
||||
))}
|
||||
</nav>
|
||||
@ -167,22 +167,23 @@ export function DocumentationHeader({
|
||||
</div>
|
||||
{/*LOGO*/}
|
||||
<div className="flex items-center">
|
||||
<Link href="/getting-started/intro">
|
||||
<a className="flex items-center px-4 text-slate-900 dark:text-white lg:px-0">
|
||||
<svg
|
||||
role="img"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className="h-8 w-8"
|
||||
fill="currentColor"
|
||||
>
|
||||
<title>Nx</title>
|
||||
<path d="M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z" />
|
||||
</svg>
|
||||
<span className="ml-2 text-xl font-bold uppercase tracking-wide">
|
||||
Docs
|
||||
</span>
|
||||
</a>
|
||||
<Link
|
||||
href="/getting-started/intro"
|
||||
className="flex items-center px-4 text-slate-900 dark:text-white lg:px-0"
|
||||
>
|
||||
<svg
|
||||
role="img"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className="h-8 w-8"
|
||||
fill="currentColor"
|
||||
>
|
||||
<title>Nx</title>
|
||||
<path d="M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z" />
|
||||
</svg>
|
||||
<span className="ml-2 text-xl font-bold uppercase tracking-wide">
|
||||
Docs
|
||||
</span>
|
||||
</Link>
|
||||
</div>
|
||||
{/*SEARCH*/}
|
||||
|
||||
@ -161,14 +161,14 @@ export function Footer(): JSX.Element {
|
||||
<p className="text-base">Smart, Fast and Extensible Build System</p>
|
||||
<div className="flex space-x-6">
|
||||
{navigation.social.map((item) => (
|
||||
<Link key={item.name} href={item.href}>
|
||||
<a
|
||||
title={item.label}
|
||||
className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400"
|
||||
>
|
||||
<span className="sr-only">{item.name}</span>
|
||||
<item.icon className="h-6 w-6" aria-hidden="true" />
|
||||
</a>
|
||||
<Link
|
||||
key={item.name}
|
||||
href={item.href}
|
||||
title={item.label}
|
||||
className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400"
|
||||
>
|
||||
<span className="sr-only">{item.name}</span>
|
||||
<item.icon className="h-6 w-6" aria-hidden="true" />
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
@ -182,10 +182,11 @@ export function Footer(): JSX.Element {
|
||||
<ul role="list" className="mt-4 space-y-4">
|
||||
{navigation.resources.map((item) => (
|
||||
<li key={item.name}>
|
||||
<Link href={item.href}>
|
||||
<a className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400">
|
||||
{item.name}
|
||||
</a>
|
||||
<Link
|
||||
href={item.href}
|
||||
className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400"
|
||||
>
|
||||
{item.name}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
@ -198,10 +199,11 @@ export function Footer(): JSX.Element {
|
||||
<ul role="list" className="mt-4 space-y-4">
|
||||
{navigation.help.map((item) => (
|
||||
<li key={item.name}>
|
||||
<Link href={item.href}>
|
||||
<a className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400">
|
||||
{item.name}
|
||||
</a>
|
||||
<Link
|
||||
href={item.href}
|
||||
className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400"
|
||||
>
|
||||
{item.name}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
@ -216,10 +218,11 @@ export function Footer(): JSX.Element {
|
||||
<ul role="list" className="mt-4 space-y-4">
|
||||
{navigation.community.map((item) => (
|
||||
<li key={item.name}>
|
||||
<Link href={item.href}>
|
||||
<a className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400">
|
||||
{item.name}
|
||||
</a>
|
||||
<Link
|
||||
href={item.href}
|
||||
className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400"
|
||||
>
|
||||
{item.name}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
@ -232,10 +235,11 @@ export function Footer(): JSX.Element {
|
||||
<ul role="list" className="mt-4 space-y-4">
|
||||
{navigation.solutions.map((item) => (
|
||||
<li key={item.name}>
|
||||
<Link href={item.href}>
|
||||
<a className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400">
|
||||
{item.name}
|
||||
</a>
|
||||
<Link
|
||||
href={item.href}
|
||||
className="text-base text-slate-500 hover:text-slate-600 dark:hover:text-slate-400"
|
||||
>
|
||||
{item.name}
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
@ -248,18 +252,20 @@ export function Footer(): JSX.Element {
|
||||
<p className="text-sm text-slate-400 xl:text-center">
|
||||
© 2022 made with{' '}
|
||||
<HeartIcon className="-mt-0.5 inline h-4 w-4" /> by{' '}
|
||||
<Link href="https://nrwl.io/?utm_source=nx.dev">
|
||||
<a target="_blank" rel="noreferrer">
|
||||
<svg
|
||||
className="-mt-1 ml-0.5 inline h-auto w-12"
|
||||
role="img"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="currentColor"
|
||||
>
|
||||
<path d="M3.357 8.258a3.424 3.424 0 00-.845.123l.054-.02a3.437 3.437 0 00-.841.346 3.437 3.437 0 00-.262.168 3.437 3.437 0 00-.11.078 3.424 3.424 0 00-.025.022 3.437 3.437 0 00-.01.005 3.424 3.424 0 00-.103.084 3.437 3.437 0 00-.115.104 3.437 3.437 0 00-.05.045 3.424 3.424 0 00-.08.08 3.424 3.424 0 00-.099.107 3.437 3.437 0 00-.03.034 3.424 3.424 0 00-.071.086 3.437 3.437 0 00-.034.04 3.424 3.424 0 00-.066.088 3.437 3.437 0 00-.006.008 3.424 3.424 0 00-.072.1 3.437 3.437 0 00-.014.02 3.424 3.424 0 00-.082.132 3.424 3.424 0 00-.074.127 3.437 3.437 0 00-.012.026 3.424 3.424 0 00-.062.12 3.424 3.424 0 00-.067.143 3.424 3.424 0 00-.054.135 3.437 3.437 0 00-.008.02 3.424 3.424 0 00-.131.437 3.424 3.424 0 00-.031.152 3.424 3.424 0 00-.026.149 3.437 3.437 0 000 .013 3.424 3.424 0 00-.027.303A3.424 3.424 0 000 11.68a3.437 3.437 0 000 .04 3.424 3.424 0 00.004.124A3.424 3.424 0 00.016 12a3.424 3.424 0 00.015.14 3.437 3.437 0 00.01.057 3.424 3.424 0 00.018.108 3.437 3.437 0 000 .004 3.424 3.424 0 00.025.123 3.437 3.437 0 00.037.15 3.437 3.437 0 00.096.297 3.437 3.437 0 00.056.144 3.437 3.437 0 00.432.745c.014.02.025.024.04.043a3.424 3.424 0 00.007.01 3.424 3.424 0 00.305.33l.011.013c.1.09.16.132.137.129.008.006.02.01.03.018a3.424 3.424 0 00.017.017.711.711 0 01-.205-.08.683.683 0 00-.39-.088.696.696 0 00-.608.947 1.993 1.993 0 01.564-.12 2.088 2.088 0 01.34.007 1.707 1.707 0 00.283.006c.05-.004.098-.01.147-.018a1.714 1.714 0 00.584-.203 3.424 3.424 0 00.437.17 4.43 4.43 0 002.989-.193.528.528 0 00.115-.076.179.179 0 00.076.03l1.789.169v.863H8.75v-.734l1.12.105-4.204-.754a.111.111 0 00-.014-.004c-.01-.1-.095-.172-.13-.218a.134.134 0 01-.03-.07 1.64 1.64 0 00-1.496-1.52.504.504 0 00-.18-.193.503.503 0 01-.187-.4.56.56 0 00-.498.44 1.393 1.393 0 01-.377-2.222 1.798 1.798 0 011.312-.563A1.824 1.824 0 015.83 10.96a.914.914 0 01-.543.32.904.904 0 00-.736.748c.35 0 .585.477 1.236.477a.59.59 0 00.547-.367.592.592 0 00.549.367 1.17 1.17 0 00.49-.106v2.002l1.377.327v-1.592l2.193 2.605H12.1v-4.89h-1.38v2.605L8.53 10.852H7.373v.427c-.283-.05-.556-.255-.65-.52a3.424 3.424 0 00-3.366-2.501zM22.109 9.96v4.414c0 1.186.766 1.336 1.485 1.336.219 0 .406-.02.406-.02v-1.03s-.078.007-.164.007c-.305 0-.375-.12-.375-.453V9.96zm-6.816 1.932a2.057 2.057 0 00-.709.128 1.253 1.253 0 00-.535.385v-.453h-1.285v3.79h1.347v-1.74c0-.316.081-.551.244-.704.164-.154.39-.23.678-.23a2.937 2.937 0 01.307.017v-1.193a2.057 2.057 0 00-.047 0zm.584.06l1.094 3.787h1.306l.477-1.736.45 1.736h1.306l1.094-3.787h-1.186l-.54 1.932-.52-1.932h-1.15l-.542 1.912-.512-1.912zm-12.281 2.14c.03 0 .07.016.117.027.092.023.17.02.15.108a.171.171 0 01-.332-.08c.01-.044.033-.056.065-.055z" />
|
||||
</svg>
|
||||
</a>
|
||||
<Link
|
||||
href="https://nrwl.io/?utm_source=nx.dev"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
<svg
|
||||
className="-mt-1 ml-0.5 inline h-auto w-12"
|
||||
role="img"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="currentColor"
|
||||
>
|
||||
<path d="M3.357 8.258a3.424 3.424 0 00-.845.123l.054-.02a3.437 3.437 0 00-.841.346 3.437 3.437 0 00-.262.168 3.437 3.437 0 00-.11.078 3.424 3.424 0 00-.025.022 3.437 3.437 0 00-.01.005 3.424 3.424 0 00-.103.084 3.437 3.437 0 00-.115.104 3.437 3.437 0 00-.05.045 3.424 3.424 0 00-.08.08 3.424 3.424 0 00-.099.107 3.437 3.437 0 00-.03.034 3.424 3.424 0 00-.071.086 3.437 3.437 0 00-.034.04 3.424 3.424 0 00-.066.088 3.437 3.437 0 00-.006.008 3.424 3.424 0 00-.072.1 3.437 3.437 0 00-.014.02 3.424 3.424 0 00-.082.132 3.424 3.424 0 00-.074.127 3.437 3.437 0 00-.012.026 3.424 3.424 0 00-.062.12 3.424 3.424 0 00-.067.143 3.424 3.424 0 00-.054.135 3.437 3.437 0 00-.008.02 3.424 3.424 0 00-.131.437 3.424 3.424 0 00-.031.152 3.424 3.424 0 00-.026.149 3.437 3.437 0 000 .013 3.424 3.424 0 00-.027.303A3.424 3.424 0 000 11.68a3.437 3.437 0 000 .04 3.424 3.424 0 00.004.124A3.424 3.424 0 00.016 12a3.424 3.424 0 00.015.14 3.437 3.437 0 00.01.057 3.424 3.424 0 00.018.108 3.437 3.437 0 000 .004 3.424 3.424 0 00.025.123 3.437 3.437 0 00.037.15 3.437 3.437 0 00.096.297 3.437 3.437 0 00.056.144 3.437 3.437 0 00.432.745c.014.02.025.024.04.043a3.424 3.424 0 00.007.01 3.424 3.424 0 00.305.33l.011.013c.1.09.16.132.137.129.008.006.02.01.03.018a3.424 3.424 0 00.017.017.711.711 0 01-.205-.08.683.683 0 00-.39-.088.696.696 0 00-.608.947 1.993 1.993 0 01.564-.12 2.088 2.088 0 01.34.007 1.707 1.707 0 00.283.006c.05-.004.098-.01.147-.018a1.714 1.714 0 00.584-.203 3.424 3.424 0 00.437.17 4.43 4.43 0 002.989-.193.528.528 0 00.115-.076.179.179 0 00.076.03l1.789.169v.863H8.75v-.734l1.12.105-4.204-.754a.111.111 0 00-.014-.004c-.01-.1-.095-.172-.13-.218a.134.134 0 01-.03-.07 1.64 1.64 0 00-1.496-1.52.504.504 0 00-.18-.193.503.503 0 01-.187-.4.56.56 0 00-.498.44 1.393 1.393 0 01-.377-2.222 1.798 1.798 0 011.312-.563A1.824 1.824 0 015.83 10.96a.914.914 0 01-.543.32.904.904 0 00-.736.748c.35 0 .585.477 1.236.477a.59.59 0 00.547-.367.592.592 0 00.549.367 1.17 1.17 0 00.49-.106v2.002l1.377.327v-1.592l2.193 2.605H12.1v-4.89h-1.38v2.605L8.53 10.852H7.373v.427c-.283-.05-.556-.255-.65-.52a3.424 3.424 0 00-3.366-2.501zM22.109 9.96v4.414c0 1.186.766 1.336 1.485 1.336.219 0 .406-.02.406-.02v-1.03s-.078.007-.164.007c-.305 0-.375-.12-.375-.453V9.96zm-6.816 1.932a2.057 2.057 0 00-.709.128 1.253 1.253 0 00-.535.385v-.453h-1.285v3.79h1.347v-1.74c0-.316.081-.551.244-.704.164-.154.39-.23.678-.23a2.937 2.937 0 01.307.017v-1.193a2.057 2.057 0 00-.047 0zm.584.06l1.094 3.787h1.306l.477-1.736.45 1.736h1.306l1.094-3.787h-1.186l-.54 1.932-.52-1.932h-1.15l-.542 1.912-.512-1.912zm-12.281 2.14c.03 0 .07.016.117.027.092.023.17.02.15.108a.171.171 0 01-.332-.08c.01-.044.033-.056.065-.055z" />
|
||||
</svg>
|
||||
</Link>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@ -136,17 +136,19 @@ export function Header(): JSX.Element {
|
||||
<div className="overflow-hidden rounded-lg bg-white shadow-lg ring-1 ring-black/5 dark:bg-slate-900 dark:ring-white/5">
|
||||
<div className="relative grid gap-6 p-6 xl:grid-cols-2">
|
||||
{flyoutMenu.map((item) => (
|
||||
<Link key={item.name} href={item.href}>
|
||||
<a className="-m-3 flex items-start rounded-lg p-3 transition duration-150 ease-in-out hover:bg-slate-50 dark:hover:bg-slate-800/60">
|
||||
<div className="ml-4">
|
||||
<p className="text-base font-medium text-slate-900 dark:text-slate-200">
|
||||
{item.name}
|
||||
</p>
|
||||
<p className="mt-1 text-sm text-slate-500 dark:text-slate-400">
|
||||
{item.description}
|
||||
</p>
|
||||
</div>
|
||||
</a>
|
||||
<Link
|
||||
key={item.name}
|
||||
href={item.href}
|
||||
className="-m-3 flex items-start rounded-lg p-3 transition duration-150 ease-in-out hover:bg-slate-50 dark:hover:bg-slate-800/60"
|
||||
>
|
||||
<div className="ml-4">
|
||||
<p className="text-base font-medium text-slate-900 dark:text-slate-200">
|
||||
{item.name}
|
||||
</p>
|
||||
<p className="mt-1 text-sm text-slate-500 dark:text-slate-400">
|
||||
{item.description}
|
||||
</p>
|
||||
</div>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
@ -156,43 +158,38 @@ export function Header(): JSX.Element {
|
||||
</>
|
||||
)}
|
||||
</Popover>
|
||||
<Link href="https://nx.app/enterprise?utm_source=nx.dev">
|
||||
<a
|
||||
title="Check Nx Enterprise"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
Enterprise
|
||||
</a>
|
||||
<Link
|
||||
href="https://nx.app/enterprise?utm_source=nx.dev"
|
||||
title="Check Nx Enterprise"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
Enterprise
|
||||
</Link>
|
||||
<Link href="/community">
|
||||
<a
|
||||
title="Nx Community: Join us!"
|
||||
className="hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
Community
|
||||
</a>
|
||||
<Link
|
||||
href="/community"
|
||||
title="Nx Community: Join us!"
|
||||
className="hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
Community
|
||||
</Link>
|
||||
<Link href="/community#plugin-directory">
|
||||
<a
|
||||
title="Check Nx available plugins"
|
||||
className="hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
Plugins registry
|
||||
</a>
|
||||
<Link
|
||||
href="/community#plugin-directory"
|
||||
title="Check Nx available plugins"
|
||||
className="hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
Plugins registry
|
||||
</Link>
|
||||
<Link href="/conf">
|
||||
<a
|
||||
title="Check Nx conference"
|
||||
className="relative hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
{/*<span className="absolute top-0 right-0 -mt-1 -mr-1 flex h-3 w-3">*/}
|
||||
{/* <span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-blue-500 opacity-75 dark:bg-sky-500" />*/}
|
||||
{/* <span className="relative inline-flex h-3 w-3 rounded-full bg-blue-500 dark:bg-sky-500" />*/}
|
||||
{/*</span>*/}
|
||||
Nx Conf
|
||||
</a>
|
||||
<Link
|
||||
href="/conf"
|
||||
title="Check Nx conference"
|
||||
className="relative hidden px-3 py-2 font-medium leading-tight hover:text-blue-500 dark:text-slate-200 dark:hover:text-sky-500 md:inline-flex"
|
||||
>
|
||||
{/*<span className="absolute top-0 right-0 -mt-1 -mr-1 flex h-3 w-3">*/}
|
||||
{/* <span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-blue-500 opacity-75 dark:bg-sky-500" />*/}
|
||||
{/* <span className="relative inline-flex h-3 w-3 rounded-full bg-blue-500 dark:bg-sky-500" />*/}
|
||||
{/*</span>*/}Nx Conf
|
||||
</Link>
|
||||
</nav>
|
||||
</div>
|
||||
@ -271,17 +268,19 @@ export function Header(): JSX.Element {
|
||||
<div className="overflow-hidden rounded-lg bg-white shadow-lg ring-1 ring-black/5 dark:bg-slate-900 dark:ring-white/5">
|
||||
<nav className="relative grid gap-8 p-8 md:grid-cols-2">
|
||||
{flyoutMobileMenu.map((item) => (
|
||||
<Link key={item.name} href={item.href}>
|
||||
<a className="-m-3 flex items-start rounded-lg p-3 transition duration-150 ease-in-out hover:bg-slate-50 dark:hover:bg-slate-800/60">
|
||||
<div className="ml-4">
|
||||
<p className="text-base font-medium text-slate-900 dark:text-slate-200">
|
||||
{item.name}
|
||||
</p>
|
||||
<p className="mt-1 text-sm text-slate-500 dark:text-slate-400">
|
||||
{item.description}
|
||||
</p>
|
||||
</div>
|
||||
</a>
|
||||
<Link
|
||||
key={item.name}
|
||||
href={item.href}
|
||||
className="-m-3 flex items-start rounded-lg p-3 transition duration-150 ease-in-out hover:bg-slate-50 dark:hover:bg-slate-800/60"
|
||||
>
|
||||
<div className="ml-4">
|
||||
<p className="text-base font-medium text-slate-900 dark:text-slate-200">
|
||||
{item.name}
|
||||
</p>
|
||||
<p className="mt-1 text-sm text-slate-500 dark:text-slate-400">
|
||||
{item.description}
|
||||
</p>
|
||||
</div>
|
||||
</Link>
|
||||
))}
|
||||
</nav>
|
||||
|
||||
@ -82,8 +82,8 @@ function SidebarSectionItems({ item }: { item: MenuItem }): JSX.Element {
|
||||
onClick={handleCollapseToggle}
|
||||
>
|
||||
{item.disableCollapsible ? (
|
||||
<Link href={item.path as string} passHref>
|
||||
<a className="hover:underline">{item.name}</a>
|
||||
<Link href={item.path as string} passHref className="hover:underline">
|
||||
{item.name}
|
||||
</Link>
|
||||
) : (
|
||||
<>
|
||||
@ -103,21 +103,21 @@ function SidebarSectionItems({ item }: { item: MenuItem }): JSX.Element {
|
||||
key={subItem.id + '-' + index}
|
||||
data-testid={`section-li:${subItem.id}`}
|
||||
>
|
||||
<Link href={subItem.path as string} passHref>
|
||||
<a
|
||||
className={cx(
|
||||
'relative block py-1 text-slate-500 transition-colors duration-200 hover:text-slate-900 dark:text-slate-400 dark:hover:text-slate-300'
|
||||
)}
|
||||
<Link
|
||||
href={subItem.path as string}
|
||||
passHref
|
||||
className={cx(
|
||||
'relative block py-1 text-slate-500 transition-colors duration-200 hover:text-slate-900 dark:text-slate-400 dark:hover:text-slate-300'
|
||||
)}
|
||||
>
|
||||
<span
|
||||
className={cx('relative', {
|
||||
'text-md font-medium text-blue-500 dark:text-sky-500':
|
||||
isActiveLink,
|
||||
})}
|
||||
>
|
||||
<span
|
||||
className={cx('relative', {
|
||||
'text-md font-medium text-blue-500 dark:text-sky-500':
|
||||
isActiveLink,
|
||||
})}
|
||||
>
|
||||
{subItem.name}
|
||||
</span>
|
||||
</a>
|
||||
{subItem.name}
|
||||
</span>
|
||||
</Link>
|
||||
</li>
|
||||
);
|
||||
@ -205,18 +205,19 @@ export function SidebarMobile({
|
||||
{/*SECTIONS*/}
|
||||
<div className="mb-8 grid w-full shrink-0 grid-cols-3 items-center justify-between">
|
||||
{sections.map((section) => (
|
||||
<Link key={section.name} href={section.href} passHref>
|
||||
<a
|
||||
className={cx(
|
||||
section.current
|
||||
? 'text-blue-600 dark:text-sky-500'
|
||||
: 'hover:text-slate-900 dark:hover:text-sky-400',
|
||||
'whitespace-nowrap p-4 text-center text-sm font-medium'
|
||||
)}
|
||||
aria-current={section.current ? 'page' : undefined}
|
||||
>
|
||||
{section.name}
|
||||
</a>
|
||||
<Link
|
||||
key={section.name}
|
||||
href={section.href}
|
||||
passHref
|
||||
className={cx(
|
||||
section.current
|
||||
? 'text-blue-600 dark:text-sky-500'
|
||||
: 'hover:text-slate-900 dark:hover:text-sky-400',
|
||||
'whitespace-nowrap p-4 text-center text-sm font-medium'
|
||||
)}
|
||||
aria-current={section.current ? 'page' : undefined}
|
||||
>
|
||||
{section.name}
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
|
||||
@ -31,18 +31,27 @@ export function CreateNxPlugin(): JSX.Element {
|
||||
|
||||
<ul className="mx-4 mt-8 list-disc">
|
||||
<li className="mt-2">
|
||||
<Link href="/packages/nx-plugin#generating-a-plugin">
|
||||
<a className="hover:underline">Create your Nx Plugin</a>
|
||||
<Link
|
||||
href="/packages/nx-plugin#generating-a-plugin"
|
||||
className="hover:underline"
|
||||
>
|
||||
Create your Nx Plugin
|
||||
</Link>
|
||||
</li>
|
||||
<li className="mt-2">
|
||||
<Link href="/packages/nx-plugin#testing-your-plugin">
|
||||
<a className="hover:underline">Test your plugin</a>
|
||||
<Link
|
||||
href="/packages/nx-plugin#testing-your-plugin"
|
||||
className="hover:underline"
|
||||
>
|
||||
Test your plugin
|
||||
</Link>
|
||||
</li>
|
||||
<li className="mt-2">
|
||||
<Link href="/packages/nx-plugin#generating-a-plugin">
|
||||
<a className="hover:underline">Publish your Nx Plugin</a>
|
||||
<Link
|
||||
href="/packages/nx-plugin#generating-a-plugin"
|
||||
className="hover:underline"
|
||||
>
|
||||
Publish your Nx Plugin
|
||||
</Link>
|
||||
</li>
|
||||
</ul>
|
||||
@ -61,17 +70,18 @@ export function CreateNxPlugin(): JSX.Element {
|
||||
<div className="relative flex flex flex-col items-center items-center overflow-hidden rounded-lg border border-slate-200 bg-white shadow-sm transition hover:bg-slate-50 dark:border-slate-700 dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
<div className="flex w-full px-4 py-3">
|
||||
<div className="min-w-0 flex-1">
|
||||
<Link href="/packages/nx-plugin#generating-a-plugin">
|
||||
<a className="focus:outline-none">
|
||||
<span className="absolute inset-0" aria-hidden="true" />
|
||||
<p className="text-md mb-1 font-bold text-slate-600 dark:text-slate-300">
|
||||
Create an Nx Plugin
|
||||
</p>
|
||||
<p className="text-xs text-slate-500 dark:text-slate-400">
|
||||
Follow this guide to generate an Nx plugin to fit your
|
||||
needs
|
||||
</p>
|
||||
</a>
|
||||
<Link
|
||||
href="/packages/nx-plugin#generating-a-plugin"
|
||||
className="focus:outline-none"
|
||||
>
|
||||
<span className="absolute inset-0" aria-hidden="true" />
|
||||
<p className="text-md mb-1 font-bold text-slate-600 dark:text-slate-300">
|
||||
Create an Nx Plugin
|
||||
</p>
|
||||
<p className="text-xs text-slate-500 dark:text-slate-400">
|
||||
Follow this guide to generate an Nx plugin to fit your
|
||||
needs
|
||||
</p>
|
||||
</Link>
|
||||
</div>
|
||||
<div className="flex-shrink-0">
|
||||
@ -88,17 +98,17 @@ export function CreateNxPlugin(): JSX.Element {
|
||||
<div className="relative flex flex flex-col items-center items-center overflow-hidden rounded-lg border border-slate-200 bg-white shadow-sm transition hover:bg-slate-50 dark:border-slate-700 dark:bg-slate-800/60 dark:hover:bg-slate-800">
|
||||
<div className="flex w-full px-4 py-3">
|
||||
<div className="min-w-0 flex-1">
|
||||
<Link href="/packages/nx-plugin#publishing-your-nx-plugin">
|
||||
<a className="focus:outline-none">
|
||||
<span className="absolute inset-0" aria-hidden="true" />
|
||||
<p className="text-md mb-1 font-bold text-slate-600 dark:text-slate-300">
|
||||
Publish an Nx Plugin
|
||||
</p>
|
||||
<p className="text-xs text-slate-500 dark:text-slate-400">
|
||||
Follow this guide to publish your new and shiny Nx
|
||||
plugin
|
||||
</p>
|
||||
</a>
|
||||
<Link
|
||||
href="/packages/nx-plugin#publishing-your-nx-plugin"
|
||||
className="focus:outline-none"
|
||||
>
|
||||
<span className="absolute inset-0" aria-hidden="true" />
|
||||
<p className="text-md mb-1 font-bold text-slate-600 dark:text-slate-300">
|
||||
Publish an Nx Plugin
|
||||
</p>
|
||||
<p className="text-xs text-slate-500 dark:text-slate-400">
|
||||
Follow this guide to publish your new and shiny Nx plugin
|
||||
</p>
|
||||
</Link>
|
||||
</div>
|
||||
<div className="flex-shrink-0">
|
||||
|
||||
@ -25,25 +25,26 @@ export function ExtensibleAndIntegrated(): JSX.Element {
|
||||
No need to browse the docs to find the right commands to run.{' '}
|
||||
<span className="font-medium">Stay in the flow!</span> Augment your
|
||||
editor with Nx Console, a dedicated extension available for{' '}
|
||||
<Link href="/core-features/integrate-with-editors">
|
||||
<a
|
||||
title="Install VSCode's native extension for Nx"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
VSCode
|
||||
</a>
|
||||
<Link
|
||||
href="/core-features/integrate-with-editors"
|
||||
title="Install VSCode's native extension for Nx"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
VSCode
|
||||
</Link>{' '}
|
||||
,{' '}
|
||||
<Link href="/core-features/integrate-with-editors#neovim">
|
||||
<a className="font-medium text-blue-500 dark:text-sky-500">
|
||||
Neovim
|
||||
</a>
|
||||
<Link
|
||||
href="/core-features/integrate-with-editors#neovim"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
Neovim
|
||||
</Link>{' '}
|
||||
and{' '}
|
||||
<Link href="/core-features/integrate-with-editors#webstorm">
|
||||
<a className="font-medium text-blue-500 dark:text-sky-500">
|
||||
Webstorm
|
||||
</a>
|
||||
<Link
|
||||
href="/core-features/integrate-with-editors#webstorm"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
Webstorm
|
||||
</Link>
|
||||
. Generating a new library, running e2e tests, building your app -
|
||||
everything just a click away.
|
||||
@ -56,15 +57,14 @@ export function ExtensibleAndIntegrated(): JSX.Element {
|
||||
</span>
|
||||
. Most CI interfaces are a struggle to work with and they are not
|
||||
made for monorepos. The{' '}
|
||||
<Link href="https://nx.app/?utm_source=nx.dev">
|
||||
<a
|
||||
title="Nx Cloud: Distributed Task execution & Caching"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
Nx Cloud
|
||||
</a>
|
||||
<Link
|
||||
href="https://nx.app/?utm_source=nx.dev"
|
||||
title="Nx Cloud: Distributed Task execution & Caching"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
Nx Cloud
|
||||
</Link>{' '}
|
||||
integration takes care of that, presenting what matters most in an
|
||||
awesome visual way.
|
||||
|
||||
@ -95,12 +95,10 @@ export function VscodeIntegrationTab(): JSX.Element {
|
||||
<div className="mt-3 sm:mt-0 sm:ml-3">
|
||||
<h3 className="text-sm font-medium">{feature.name}</h3>
|
||||
<Link href={feature.link}>
|
||||
<a>
|
||||
<span className="absolute inset-0" aria-hidden="true" />
|
||||
<p className="mt-2 text-sm text-gray-500">
|
||||
{feature.description}
|
||||
</p>
|
||||
</a>
|
||||
<span className="absolute inset-0" aria-hidden="true" />
|
||||
<p className="mt-2 text-sm text-gray-500">
|
||||
{feature.description}
|
||||
</p>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -18,13 +18,12 @@ export function GettingStarted(): JSX.Element {
|
||||
</div>
|
||||
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0">
|
||||
<div className="inline-flex rounded-md">
|
||||
<Link href="/getting-started/intro">
|
||||
<a
|
||||
title="Start using Nx by creating a workspace"
|
||||
className="w-full flex-none rounded-full border border-transparent bg-slate-100 py-3 px-6 text-lg font-semibold leading-6 transition hover:bg-slate-200 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700 sm:w-auto"
|
||||
>
|
||||
Get started now!
|
||||
</a>
|
||||
<Link
|
||||
href="/getting-started/intro"
|
||||
title="Start using Nx by creating a workspace"
|
||||
className="w-full flex-none rounded-full border border-transparent bg-slate-100 py-3 px-6 text-lg font-semibold leading-6 transition hover:bg-slate-200 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700 sm:w-auto"
|
||||
>
|
||||
Get started now!
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -52,13 +52,12 @@ export function Hero(): JSX.Element {
|
||||
powerful integrations.
|
||||
</h2>
|
||||
<div className="flex flex-wrap space-y-4 sm:space-y-0 sm:space-x-4">
|
||||
<Link href="/getting-started/intro">
|
||||
<a
|
||||
title="Start using Nx by creating a workspace"
|
||||
className="w-full flex-none rounded-full border border-transparent bg-blue-500 py-3 px-6 text-lg font-semibold leading-6 text-white transition hover:bg-blue-600 hover:text-slate-50 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-sky-500 dark:text-white dark:hover:bg-sky-400 sm:w-auto"
|
||||
>
|
||||
Get started
|
||||
</a>
|
||||
<Link
|
||||
href="/getting-started/intro"
|
||||
title="Start using Nx by creating a workspace"
|
||||
className="w-full flex-none rounded-full border border-transparent bg-blue-500 py-3 px-6 text-lg font-semibold leading-6 text-white transition hover:bg-blue-600 hover:text-slate-50 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-sky-500 dark:text-white dark:hover:bg-sky-400 sm:w-auto"
|
||||
>
|
||||
Get started
|
||||
</Link>
|
||||
|
||||
<CopyToClipboard
|
||||
|
||||
@ -18,13 +18,12 @@ export function Migrate(): JSX.Element {
|
||||
</div>
|
||||
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0">
|
||||
<div className="inline-flex rounded-md">
|
||||
<Link href="/recipes/adopting-nx/adding-to-monorepo">
|
||||
<a
|
||||
title="Start using Nx by creating a workspace"
|
||||
className="w-full flex-none rounded-full border border-transparent bg-slate-100 py-3 px-6 text-lg font-semibold leading-6 transition hover:bg-slate-200 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700 sm:w-auto"
|
||||
>
|
||||
Add Nx now!
|
||||
</a>
|
||||
<Link
|
||||
href="/recipes/adopting-nx/adding-to-monorepo"
|
||||
title="Start using Nx by creating a workspace"
|
||||
className="w-full flex-none rounded-full border border-transparent bg-slate-100 py-3 px-6 text-lg font-semibold leading-6 transition hover:bg-slate-200 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700 sm:w-auto"
|
||||
>
|
||||
Add Nx now!
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -29,13 +29,12 @@ export function MigrationsAndCodeGeneration(): JSX.Element {
|
||||
</p>
|
||||
</div>
|
||||
<div className="action mt-6 flex">
|
||||
<Link href="/core-features/automate-updating-dependencies">
|
||||
<a
|
||||
title="Read more about affected command"
|
||||
className="rounded-full border border-transparent bg-blue-500 py-1 px-3 font-semibold text-white transition hover:bg-blue-600 hover:text-slate-50 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-sky-500 dark:hover:bg-sky-400"
|
||||
>
|
||||
Read about migrations
|
||||
</a>
|
||||
<Link
|
||||
href="/core-features/automate-updating-dependencies"
|
||||
title="Read more about affected command"
|
||||
className="rounded-full border border-transparent bg-blue-500 py-1 px-3 font-semibold text-white transition hover:bg-blue-600 hover:text-slate-50 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-sky-500 dark:hover:bg-sky-400"
|
||||
>
|
||||
Read about migrations
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -20,25 +20,23 @@ export function MonorepoStyles(): JSX.Element {
|
||||
<div className="mt-8 flex gap-16 font-normal">
|
||||
<p className="max-w-xl text-lg text-slate-700 dark:text-slate-400">
|
||||
Choose your style! Have a monorepo already?{' '}
|
||||
<Link href="/recipes/adopting-nx/adding-to-monorepo">
|
||||
<a
|
||||
title="Install VSCode's native extension for Nx"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
Add Nx on top!
|
||||
</a>
|
||||
<Link
|
||||
href="/recipes/adopting-nx/adding-to-monorepo"
|
||||
title="Install VSCode's native extension for Nx"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
Add Nx on top!
|
||||
</Link>{' '}
|
||||
<span className="font-medium">You control everything</span>, Nx
|
||||
makes things fast. Or focus on what matters and{' '}
|
||||
<span className="font-medium">let Nx do the heavy lifting</span>{' '}
|
||||
with its set of{' '}
|
||||
<Link href="/community#plugin-directory">
|
||||
<a
|
||||
title="Install VSCode's native extension for Nx"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
powerful plugins
|
||||
</a>
|
||||
<Link
|
||||
href="/community#plugin-directory"
|
||||
title="Install VSCode's native extension for Nx"
|
||||
className="font-medium text-blue-500 dark:text-sky-500"
|
||||
>
|
||||
powerful plugins
|
||||
</Link>
|
||||
. Extend Nx by creating custom plugins that{' '}
|
||||
<span className="font-medium">work for your organization</span>,
|
||||
@ -46,13 +44,12 @@ export function MonorepoStyles(): JSX.Element {
|
||||
</p>
|
||||
</div>
|
||||
<div className="action mt-6 flex">
|
||||
<Link href="/concepts/integrated-vs-package-based">
|
||||
<a
|
||||
title="Read more about affected command"
|
||||
className="rounded-full border border-transparent bg-blue-500 py-1 px-3 font-semibold text-white transition hover:bg-blue-600 hover:text-slate-50 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-sky-500 dark:hover:bg-sky-400"
|
||||
>
|
||||
Read about different monorepo styles
|
||||
</a>
|
||||
<Link
|
||||
href="/concepts/integrated-vs-package-based"
|
||||
title="Read more about affected command"
|
||||
className="rounded-full border border-transparent bg-blue-500 py-1 px-3 font-semibold text-white transition hover:bg-blue-600 hover:text-slate-50 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-sky-500 dark:hover:bg-sky-400"
|
||||
>
|
||||
Read about different monorepo styles
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -5,14 +5,14 @@ export function CustomLink(props: any) {
|
||||
props.target || (props.href.startsWith('http') ? '_blank' : undefined);
|
||||
|
||||
return (
|
||||
<Link {...props} passHref>
|
||||
<a
|
||||
target={target}
|
||||
rel={target === '_blank' ? 'noreferrer' : undefined}
|
||||
className={props.className}
|
||||
>
|
||||
{props.children}
|
||||
</a>
|
||||
<Link
|
||||
{...props}
|
||||
passHref
|
||||
target={target}
|
||||
rel={target === '_blank' ? 'noreferrer' : undefined}
|
||||
className={props.className}
|
||||
>
|
||||
{props.children}
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
|
||||
@ -125,9 +125,12 @@ export function Persona({
|
||||
<div className="ml-4">
|
||||
{title && <h5 className="mt-0 text-base font-medium">{title}</h5>}
|
||||
<div className="prose-sm dark:prose-invert mt-2">{children}</div>
|
||||
<Link href={url}>
|
||||
<a title={title} aria-hidden="true" className="absolute inset-0" />
|
||||
</Link>
|
||||
<Link
|
||||
href={url}
|
||||
title={title}
|
||||
aria-hidden="true"
|
||||
className="absolute inset-0"
|
||||
></Link>
|
||||
</div>
|
||||
</aside>
|
||||
);
|
||||
|
||||
33
package.json
33
package.json
@ -53,17 +53,17 @@
|
||||
"@ngrx/effects": "~14.0.0",
|
||||
"@ngrx/router-store": "~14.0.0",
|
||||
"@ngrx/store": "~14.0.0",
|
||||
"@nrwl/cypress": "15.0.0-rc1",
|
||||
"@nrwl/devkit": "15.0.0-rc1",
|
||||
"@nrwl/eslint-plugin-nx": "15.0.0-rc1",
|
||||
"@nrwl/jest": "15.0.0-rc1",
|
||||
"@nrwl/js": "15.0.0-rc1",
|
||||
"@nrwl/linter": "15.0.0-rc1",
|
||||
"@nrwl/next": "15.0.0-rc1",
|
||||
"@nrwl/nx-cloud": "14.7.0",
|
||||
"@nrwl/react": "15.0.0-rc1",
|
||||
"@nrwl/storybook": "15.0.0-rc1",
|
||||
"@nrwl/web": "15.0.0-rc1",
|
||||
"@nrwl/cypress": "15.0.7-rc.0",
|
||||
"@nrwl/devkit": "15.0.7-rc.0",
|
||||
"@nrwl/eslint-plugin-nx": "15.0.7-rc.0",
|
||||
"@nrwl/jest": "15.0.7-rc.0",
|
||||
"@nrwl/js": "15.0.7-rc.0",
|
||||
"@nrwl/linter": "15.0.7-rc.0",
|
||||
"@nrwl/next": "15.0.7-rc.0",
|
||||
"@nrwl/nx-cloud": "15.0.1",
|
||||
"@nrwl/react": "15.0.7-rc.0",
|
||||
"@nrwl/storybook": "15.0.7-rc.0",
|
||||
"@nrwl/web": "15.0.7-rc.0",
|
||||
"@parcel/watcher": "2.0.4",
|
||||
"@phenomnomnominal/tsquery": "4.1.1",
|
||||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
|
||||
@ -139,7 +139,7 @@
|
||||
"ejs": "^3.1.7",
|
||||
"enhanced-resolve": "^5.8.3",
|
||||
"eslint": "8.15.0",
|
||||
"eslint-config-next": "12.3.1",
|
||||
"eslint-config-next": "13.0.0",
|
||||
"eslint-config-prettier": "^8.1.0",
|
||||
"eslint-plugin-cypress": "^2.10.3",
|
||||
"eslint-plugin-import": "2.26.0",
|
||||
@ -174,7 +174,7 @@
|
||||
"kill-port": "^1.6.1",
|
||||
"lerna": "6.0.0",
|
||||
"less": "3.12.2",
|
||||
"less-loader": "^10.1.0",
|
||||
"less-loader": "11.1.0",
|
||||
"license-webpack-plugin": "^4.0.2",
|
||||
"loader-utils": "1.2.3",
|
||||
"lockfile-lint": "^4.7.6",
|
||||
@ -186,7 +186,7 @@
|
||||
"next-sitemap": "^3.1.10",
|
||||
"ng-packagr": "~14.2.0",
|
||||
"node-fetch": "^2.6.7",
|
||||
"nx": "15.0.0-rc1",
|
||||
"nx": "15.0.7-rc.0",
|
||||
"open": "^8.4.0",
|
||||
"parse-markdown-links": "^1.0.4",
|
||||
"parse5": "4.0.0",
|
||||
@ -220,7 +220,7 @@
|
||||
"style-loader": "^3.3.0",
|
||||
"styled-components": "5.0.0",
|
||||
"stylus": "^0.55.0",
|
||||
"stylus-loader": "^6.2.0",
|
||||
"stylus-loader": "7.1.0",
|
||||
"tar-fs": "^2.1.1",
|
||||
"tar-stream": "~2.2.0",
|
||||
"tcp-port-used": "^1.0.2",
|
||||
@ -283,7 +283,7 @@
|
||||
"history": "^5.3.0",
|
||||
"json-schema-to-typescript": "^10.1.5",
|
||||
"jsonpointer": "^5.0.0",
|
||||
"next": "12.3.1",
|
||||
"next": "13.0.0",
|
||||
"next-seo": "^5.13.0",
|
||||
"npm-run-path": "^4.0.1",
|
||||
"preact": "10.6.4",
|
||||
@ -306,3 +306,4 @@
|
||||
"underscore": "^1.12.1"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -52,7 +52,7 @@
|
||||
"semver": "7.3.4",
|
||||
"style-loader": "^3.3.0",
|
||||
"stylus": "^0.55.0",
|
||||
"stylus-loader": "^6.2.0",
|
||||
"stylus-loader": "^7.1.0",
|
||||
"url-loader": "^4.1.1",
|
||||
"webpack": "^5.58.1",
|
||||
"webpack-merge": "^5.8.0"
|
||||
|
||||
@ -47,7 +47,7 @@
|
||||
"fs-extra": "^10.1.0",
|
||||
"ignore": "^5.0.4",
|
||||
"less": "3.12.2",
|
||||
"less-loader": "^10.1.0",
|
||||
"less-loader": "^11.1.0",
|
||||
"license-webpack-plugin": "^4.0.2",
|
||||
"loader-utils": "1.2.3",
|
||||
"mini-css-extract-plugin": "~2.4.7",
|
||||
@ -63,7 +63,7 @@
|
||||
"source-map-loader": "^3.0.0",
|
||||
"style-loader": "^3.3.0",
|
||||
"stylus": "^0.55.0",
|
||||
"stylus-loader": "^6.2.0",
|
||||
"stylus-loader": "^7.1.0",
|
||||
"terser-webpack-plugin": "^5.3.3",
|
||||
"ts-loader": "^9.3.1",
|
||||
"ts-node": "10.9.1",
|
||||
|
||||
472
yarn.lock
472
yarn.lock
@ -3287,82 +3287,82 @@
|
||||
dependencies:
|
||||
tslib "2.4.0"
|
||||
|
||||
"@next/env@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/env/-/env-12.3.1.tgz#18266bd92de3b4aa4037b1927aa59e6f11879260"
|
||||
integrity sha512-9P9THmRFVKGKt9DYqeC2aKIxm8rlvkK38V1P1sRE7qyoPBIs8l9oo79QoSdPtOWfzkbDAVUqvbQGgTMsb8BtJg==
|
||||
"@next/env@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.0.tgz#38527956680693c90b4522ab4ab9a2fbe3a17f67"
|
||||
integrity sha512-65v9BVuah2Mplohm4+efsKEnoEuhmlGm8B2w6vD1geeEP2wXtlSJCvR/cCRJ3fD8wzCQBV41VcMBQeYET6MRkg==
|
||||
|
||||
"@next/eslint-plugin-next@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.1.tgz#b821f27b0f175954d8d18e5d323fce040ecc79a6"
|
||||
integrity sha512-sw+lTf6r6P0j+g/n9y4qdWWI2syPqZx+uc0+B/fRENqfR3KpSid6MIKqc9gNwGhJASazEQ5b3w8h4cAET213jw==
|
||||
"@next/eslint-plugin-next@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.0.tgz#cf3d799b21671554c1f5889c01d2513afb9973cd"
|
||||
integrity sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg==
|
||||
dependencies:
|
||||
glob "7.1.7"
|
||||
|
||||
"@next/swc-android-arm-eabi@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.1.tgz#b15ce8ad376102a3b8c0f3c017dde050a22bb1a3"
|
||||
integrity sha512-i+BvKA8tB//srVPPQxIQN5lvfROcfv4OB23/L1nXznP+N/TyKL8lql3l7oo2LNhnH66zWhfoemg3Q4VJZSruzQ==
|
||||
"@next/swc-android-arm-eabi@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.0.tgz#15cd89d19d3c00d123fdfe367bab38c362f6c515"
|
||||
integrity sha512-+DUQkYF93gxFjWY+CYWE1QDX6gTgnUiWf+W4UqZjM1Jcef8U97fS6xYh+i+8rH4MM0AXHm7OSakvfOMzmjU6VA==
|
||||
|
||||
"@next/swc-android-arm64@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.3.1.tgz#85d205f568a790a137cb3c3f720d961a2436ac9c"
|
||||
integrity sha512-CmgU2ZNyBP0rkugOOqLnjl3+eRpXBzB/I2sjwcGZ7/Z6RcUJXK5Evz+N0ucOxqE4cZ3gkTeXtSzRrMK2mGYV8Q==
|
||||
"@next/swc-android-arm64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.0.tgz#9410365bb07097268d4773a46b02cfe6b3fe3ab7"
|
||||
integrity sha512-RW9Uy3bMSc0zVGCa11klFuwfP/jdcdkhdruqnrJ7v+7XHm6OFKkSRzX6ee7yGR1rdDZvTnP4GZSRSpzjLv/N0g==
|
||||
|
||||
"@next/swc-darwin-arm64@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.1.tgz#b105457d6760a7916b27e46c97cb1a40547114ae"
|
||||
integrity sha512-hT/EBGNcu0ITiuWDYU9ur57Oa4LybD5DOQp4f22T6zLfpoBMfBibPtR8XktXmOyFHrL/6FC2p9ojdLZhWhvBHg==
|
||||
"@next/swc-darwin-arm64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.0.tgz#caf262fb5cb8bb335f6f344fd67a44dc8bf6a084"
|
||||
integrity sha512-APA26nps1j4qyhOIzkclW/OmgotVHj1jBxebSpMCPw2rXfiNvKNY9FA0TcuwPmUCNqaTnm703h6oW4dvp73A4Q==
|
||||
|
||||
"@next/swc-darwin-x64@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.1.tgz#6947b39082271378896b095b6696a7791c6e32b1"
|
||||
integrity sha512-9S6EVueCVCyGf2vuiLiGEHZCJcPAxglyckTZcEwLdJwozLqN0gtS0Eq0bQlGS3dH49Py/rQYpZ3KVWZ9BUf/WA==
|
||||
"@next/swc-darwin-x64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.0.tgz#6b214753410e1d8512a1491045acea1e188df7d6"
|
||||
integrity sha512-qsUhUdoFuRJiaJ7LnvTQ6GZv1QnMDcRXCIjxaN0FNVXwrjkq++U7KjBUaxXkRzLV4C7u0NHLNOp0iZwNNE7ypw==
|
||||
|
||||
"@next/swc-freebsd-x64@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.1.tgz#2b6c36a4d84aae8b0ea0e0da9bafc696ae27085a"
|
||||
integrity sha512-qcuUQkaBZWqzM0F1N4AkAh88lLzzpfE6ImOcI1P6YeyJSsBmpBIV8o70zV+Wxpc26yV9vpzb+e5gCyxNjKJg5Q==
|
||||
"@next/swc-freebsd-x64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.0.tgz#eeb176bdb585f48882bdac1d04271b918ca87590"
|
||||
integrity sha512-sCdyCbboS7CwdnevKH9J6hkJI76LUw1jVWt4eV7kISuLiPba3JmehZSWm80oa4ADChRVAwzhLAo2zJaYRrInbg==
|
||||
|
||||
"@next/swc-linux-arm-gnueabihf@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.1.tgz#6e421c44285cfedac1f4631d5de330dd60b86298"
|
||||
integrity sha512-diL9MSYrEI5nY2wc/h/DBewEDUzr/DqBjIgHJ3RUNtETAOB3spMNHvJk2XKUDjnQuluLmFMloet9tpEqU2TT9w==
|
||||
"@next/swc-linux-arm-gnueabihf@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.0.tgz#2c2a9622c93f87a8baca94e068f674da4cae6018"
|
||||
integrity sha512-/X/VxfFA41C9jrEv+sUsPLQ5vbDPVIgG0CJrzKvrcc+b+4zIgPgtfsaWq9ockjHFQi3ycvlZK4TALOXO8ovQ6Q==
|
||||
|
||||
"@next/swc-linux-arm64-gnu@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.1.tgz#8863f08a81f422f910af126159d2cbb9552ef717"
|
||||
integrity sha512-o/xB2nztoaC7jnXU3Q36vGgOolJpsGG8ETNjxM1VAPxRwM7FyGCPHOMk1XavG88QZSQf+1r+POBW0tLxQOJ9DQ==
|
||||
"@next/swc-linux-arm64-gnu@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.0.tgz#69505827e2928fb18034150fd4d754d54c4a1c4b"
|
||||
integrity sha512-x6Oxr1GIi0ZtNiT6jbw+JVcbEi3UQgF7mMmkrgfL4mfchOwXtWSHKTSSPnwoJWJfXYa0Vy1n8NElWNTGAqoWFw==
|
||||
|
||||
"@next/swc-linux-arm64-musl@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.1.tgz#0038f07cf0b259d70ae0c80890d826dfc775d9f3"
|
||||
integrity sha512-2WEasRxJzgAmP43glFNhADpe8zB7kJofhEAVNbDJZANp+H4+wq+/cW1CdDi8DqjkShPEA6/ejJw+xnEyDID2jg==
|
||||
"@next/swc-linux-arm64-musl@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.0.tgz#487a88f2583a046e882328fe0665b37eca4fd0f6"
|
||||
integrity sha512-SnMH9ngI+ipGh3kqQ8+mDtWunirwmhQnQeZkEq9e/9Xsgjf04OetqrqRHKM1HmJtG2qMUJbyXFJ0F81TPuT+3g==
|
||||
|
||||
"@next/swc-linux-x64-gnu@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.1.tgz#c66468f5e8181ffb096c537f0dbfb589baa6a9c1"
|
||||
integrity sha512-JWEaMyvNrXuM3dyy9Pp5cFPuSSvG82+yABqsWugjWlvfmnlnx9HOQZY23bFq3cNghy5V/t0iPb6cffzRWylgsA==
|
||||
"@next/swc-linux-x64-gnu@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.0.tgz#29e89c7e4fd2e2b16ad059076f6261998aee53df"
|
||||
integrity sha512-VSQwTX9EmdbotArtA1J67X8964oQfe0xHb32x4tu+JqTR+wOHyG6wGzPMdXH2oKAp6rdd7BzqxUXXf0J+ypHlw==
|
||||
|
||||
"@next/swc-linux-x64-musl@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.1.tgz#c6269f3e96ac0395bc722ad97ce410ea5101d305"
|
||||
integrity sha512-xoEWQQ71waWc4BZcOjmatuvPUXKTv6MbIFzpm4LFeCHsg2iwai0ILmNXf81rJR+L1Wb9ifEke2sQpZSPNz1Iyg==
|
||||
"@next/swc-linux-x64-musl@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.0.tgz#2f63aae922d2b2829aec21bf8f9adda8b6c16365"
|
||||
integrity sha512-xBCP0nnpO0q4tsytXkvIwWFINtbFRyVY5gxa1zB0vlFtqYR9lNhrOwH3CBrks3kkeaePOXd611+8sjdUtrLnXA==
|
||||
|
||||
"@next/swc-win32-arm64-msvc@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.1.tgz#83c639ee969cee36ce247c3abd1d9df97b5ecade"
|
||||
integrity sha512-hswVFYQYIeGHE2JYaBVtvqmBQ1CppplQbZJS/JgrVI3x2CurNhEkmds/yqvDONfwfbttTtH4+q9Dzf/WVl3Opw==
|
||||
"@next/swc-win32-arm64-msvc@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.0.tgz#4117bad96c2a6775f70294fba45c63951a8a21ac"
|
||||
integrity sha512-NutwDafqhGxqPj/eiUixJq9ImS/0sgx6gqlD7jRndCvQ2Q8AvDdu1+xKcGWGNnhcDsNM/n1avf1e62OG1GaqJg==
|
||||
|
||||
"@next/swc-win32-ia32-msvc@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.1.tgz#52995748b92aa8ad053440301bc2c0d9fbcf27c2"
|
||||
integrity sha512-Kny5JBehkTbKPmqulr5i+iKntO5YMP+bVM8Hf8UAmjSMVo3wehyLVc9IZkNmcbxi+vwETnQvJaT5ynYBkJ9dWA==
|
||||
"@next/swc-win32-ia32-msvc@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.0.tgz#5914eb86f9ea92a00d76cb094dd9734b3bf2012c"
|
||||
integrity sha512-zNaxaO+Kl/xNz02E9QlcVz0pT4MjkXGDLb25qxtAzyJL15aU0+VjjbIZAYWctG59dvggNIUNDWgoBeVTKB9xLg==
|
||||
|
||||
"@next/swc-win32-x64-msvc@12.3.1":
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.1.tgz#27d71a95247a9eaee03d47adee7e3bd594514136"
|
||||
integrity sha512-W1ijvzzg+kPEX6LAc+50EYYSEo0FVu7dmTE+t+DM4iOLqgGHoW9uYSz9wCVdkXOEEMP9xhXfGpcSxsfDucyPkA==
|
||||
"@next/swc-win32-x64-msvc@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.0.tgz#c54a5a739dee04b20338d305226a2acdf701f67f"
|
||||
integrity sha512-FFOGGWwTCRMu9W7MF496Urefxtuo2lttxF1vwS+1rIRsKvuLrWhVaVTj3T8sf2EBL6gtJbmh4TYlizS+obnGKA==
|
||||
|
||||
"@ngrx/effects@~14.0.0":
|
||||
version "14.0.2"
|
||||
@ -3566,13 +3566,6 @@
|
||||
read-package-json-fast "^2.0.3"
|
||||
which "^2.0.2"
|
||||
|
||||
"@nrwl/cli@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-15.0.0-rc1.tgz#50ba2bc4ad76aeeded4382f74f8ec96becaf6a7f"
|
||||
integrity sha512-cTXduFLA6aux65VoZl0Y8uVrgCWr33V0uTHr5h1ec+G6AAxnT0YLenpK54mgi5NYCskUGMoczh+LA/YEhtooXA==
|
||||
dependencies:
|
||||
nx "15.0.0-rc1"
|
||||
|
||||
"@nrwl/cli@15.0.3":
|
||||
version "15.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-15.0.3.tgz#31cd05f775930f23623c64bebcf45889865fc83b"
|
||||
@ -3580,17 +3573,24 @@
|
||||
dependencies:
|
||||
nx "15.0.3"
|
||||
|
||||
"@nrwl/cypress@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/cypress/-/cypress-15.0.0-rc1.tgz#55c702ad652717276d584344cf25fc92cd8da1d0"
|
||||
integrity sha512-wqhzfzEHTJPhqVec3y4NreJurREEyTPKYQY50xclVP+PIe8a72kI0kWc/n9TUQkoqQzrKgYOEUnM6z+FePus7A==
|
||||
"@nrwl/cli@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-15.0.7-rc.0.tgz#6446daf7882326830e71f96d2ebd85ec379b47c2"
|
||||
integrity sha512-Zog8uKMUmAMTffdoALQP4YfQ/kIZN6Be5I4Qw7NbTGSkh9VyexpGE+cH1JZNfcoLq7N/zSy7qKFb7BQw31PlFw==
|
||||
dependencies:
|
||||
nx "15.0.7-rc.0"
|
||||
|
||||
"@nrwl/cypress@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/cypress/-/cypress-15.0.7-rc.0.tgz#f1b21a184831cae19d9f6226f05b660a4c17aaa7"
|
||||
integrity sha512-G2FHfOkZ2i00Ip9EvyXgzcYNOUc/HBUuwt249bD9fC8IbOQN9tDZ93ae+X+4OfQ6JF58hWt1GXEO6rRogqBd/g==
|
||||
dependencies:
|
||||
"@babel/core" "^7.0.1"
|
||||
"@babel/preset-env" "^7.0.0"
|
||||
"@cypress/webpack-preprocessor" "^5.12.0"
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/linter" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/linter" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
"@phenomnomnominal/tsquery" "4.1.1"
|
||||
babel-loader "^8.0.2"
|
||||
chalk "4.1.0"
|
||||
@ -3603,10 +3603,10 @@
|
||||
webpack "^4 || ^5"
|
||||
webpack-node-externals "^3.0.0"
|
||||
|
||||
"@nrwl/devkit@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-15.0.0-rc1.tgz#cc0a3e4ba1657383c42292f28c8030b044670098"
|
||||
integrity sha512-ujnleQqeM+JwE+ykLWzCj4s1dco55kQxy9TPy7TEYYZv68WQ0KTCabDy+EHlrMKPKywdOBBPeV2Q+wtK8G+XDw==
|
||||
"@nrwl/devkit@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-15.0.7-rc.0.tgz#bcfa40ebf168242ea66c05fa37ca1981272689e2"
|
||||
integrity sha512-hHeVb2tEfCmyZFwSnzBH+0q7Ud4948/N3vukPGgcpNZkscaJFuy+GhlKCKjzMkgZuCeAVo6ZX/bQMZWZb+gODg==
|
||||
dependencies:
|
||||
"@phenomnomnominal/tsquery" "4.1.1"
|
||||
ejs "^3.1.7"
|
||||
@ -3625,26 +3625,26 @@
|
||||
semver "7.3.4"
|
||||
tslib "^2.3.0"
|
||||
|
||||
"@nrwl/eslint-plugin-nx@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-15.0.0-rc1.tgz#8855ddb2c2379ad3a9b36170b8385683e98f72c7"
|
||||
integrity sha512-xGsOaN/jpU+pUJgDRl3ywYT5hqM1fnxRprHhOSoAnXu1IeePrIZakp0ZvyzhC4ZGRJOl3HpwxOlmLEDPTsBqKg==
|
||||
"@nrwl/eslint-plugin-nx@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-15.0.7-rc.0.tgz#f5d528d133fc41416fe00aacdbf57ec5a516ec12"
|
||||
integrity sha512-VBFDaBNCc9kpkY0v4eGZbWpFgH5fapUaflsQ0vL76FwX+SWSRU7uRS3jTRF4jHnWf4bE2BCVzMSq/4m6G5L9Vw==
|
||||
dependencies:
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
"@typescript-eslint/utils" "^5.36.1"
|
||||
chalk "4.1.0"
|
||||
confusing-browser-globals "^1.0.9"
|
||||
semver "7.3.4"
|
||||
|
||||
"@nrwl/jest@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/jest/-/jest-15.0.0-rc1.tgz#34a701897c864a12eb7f3f5d442c4b363b9e4998"
|
||||
integrity sha512-2SEPc9h0Pp+rsIKaRonZPUs4f/ZTkWQVu8R8sEyQkUD37sh2QB/HBNZFwZbewUR8Y3tqLgkhiaeLRf72UrEasQ==
|
||||
"@nrwl/jest@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/jest/-/jest-15.0.7-rc.0.tgz#aaa8c80b02f28ec39d47fe3aeae8f0044ee644b0"
|
||||
integrity sha512-quBjib5zKn3aT06HGbuSCev06O8f++Z/lOM6AXmGFN1c227WDn4RpzmcFmK7IsfgnSQdtEEfpvdD11E0IzTdVQ==
|
||||
dependencies:
|
||||
"@jest/reporters" "28.1.1"
|
||||
"@jest/test-result" "28.1.1"
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@phenomnomnominal/tsquery" "4.1.1"
|
||||
chalk "4.1.0"
|
||||
dotenv "~10.0.0"
|
||||
@ -3655,15 +3655,15 @@
|
||||
resolve.exports "1.1.0"
|
||||
tslib "^2.3.0"
|
||||
|
||||
"@nrwl/js@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/js/-/js-15.0.0-rc1.tgz#2b99ac75370053bd06be7397f15cd87f79b317ee"
|
||||
integrity sha512-PDvSm5jsCzOpjqngRCSRns3Ktee2T3neLqzIrAE2V6LWh7UKrkqeRhl6Kvl2YKiedI6d0ZO4phad3LGAXz1Xvg==
|
||||
"@nrwl/js@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/js/-/js-15.0.7-rc.0.tgz#b1e4e12534fdc777f36c896564cecd5c38678e26"
|
||||
integrity sha512-/vpUQApSmUIUSTJD2U+3K1ItCkfqCjLxPnHoEc7GRBPm98DfmJ6MngBR4zwoSQzuMy9z+5/xEwYpd6PmFKLy3w==
|
||||
dependencies:
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/jest" "15.0.0-rc1"
|
||||
"@nrwl/linter" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/jest" "15.0.7-rc.0"
|
||||
"@nrwl/linter" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
"@parcel/watcher" "2.0.4"
|
||||
chalk "4.1.0"
|
||||
fast-glob "3.2.7"
|
||||
@ -3674,31 +3674,31 @@
|
||||
source-map-support "0.5.19"
|
||||
tree-kill "1.2.2"
|
||||
|
||||
"@nrwl/linter@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/linter/-/linter-15.0.0-rc1.tgz#c933d41c5c088565c6ba84104c044d80b1af8ff4"
|
||||
integrity sha512-Y6np/4vHRT29/fcc1LC94U8XtY+z/zyNItsg75pWlEnyor+eAe8vHLq1vW5u0Z5Uuqvnzij+uwcMI1JDgiU24w==
|
||||
"@nrwl/linter@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/linter/-/linter-15.0.7-rc.0.tgz#3845411bc550152687755154f9b7809678ca30a4"
|
||||
integrity sha512-HIaoPuYBp2xltuVLgyUHV927xaad7HH8nXTJLMOuA4vBYD+L9LC16o68tMarPPVg12aFKGFwhDBHQQFHUfoheg==
|
||||
dependencies:
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/jest" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/jest" "15.0.7-rc.0"
|
||||
"@phenomnomnominal/tsquery" "4.1.1"
|
||||
nx "15.0.0-rc1"
|
||||
nx "15.0.7-rc.0"
|
||||
tmp "~0.2.1"
|
||||
tslib "^2.3.0"
|
||||
|
||||
"@nrwl/next@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/next/-/next-15.0.0-rc1.tgz#5d20db731b06654c29fec9cf9e491741aeebbb4e"
|
||||
integrity sha512-4Q0FXdTazCESXoOYsOA5cu4SfV2ZqGFjVqyx/qEy4kDpWmB/PfRm2wbpb19LRjoHm6FJzcxPkCAEn4RRJP4/8w==
|
||||
"@nrwl/next@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/next/-/next-15.0.7-rc.0.tgz#2eaf2d9a790fc2c4f070165b1441f3e59a83c991"
|
||||
integrity sha512-RlYzwFqwZ9aVBtjrQQLKKCocAsL3sq+1UQz9nszvRjQhIdLBzCU7iCOhoOsaqXwnI1sO00x9GhoX9qgMCdvMJg==
|
||||
dependencies:
|
||||
"@babel/plugin-proposal-decorators" "^7.14.5"
|
||||
"@nrwl/cypress" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/jest" "15.0.0-rc1"
|
||||
"@nrwl/linter" "15.0.0-rc1"
|
||||
"@nrwl/react" "15.0.0-rc1"
|
||||
"@nrwl/webpack" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/cypress" "15.0.7-rc.0"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/jest" "15.0.7-rc.0"
|
||||
"@nrwl/linter" "15.0.7-rc.0"
|
||||
"@nrwl/react" "15.0.7-rc.0"
|
||||
"@nrwl/webpack" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
"@svgr/webpack" "^6.1.2"
|
||||
chalk "4.1.0"
|
||||
dotenv "~10.0.0"
|
||||
@ -3710,12 +3710,12 @@
|
||||
url-loader "^4.1.1"
|
||||
webpack-merge "^5.8.0"
|
||||
|
||||
"@nrwl/nx-cloud@14.7.0":
|
||||
version "14.7.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/nx-cloud/-/nx-cloud-14.7.0.tgz#71dc6663c9527001bbc374f8d1d841d166fd031f"
|
||||
integrity sha512-sEGK5Ire5DC2liIsT89qR6SzZa46uinmWEAMz8ocMuu7nIMnwV9m15qajxhmYKasYsq9vTeT+x7BlZ4fnxPrNg==
|
||||
"@nrwl/nx-cloud@15.0.1":
|
||||
version "15.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/nx-cloud/-/nx-cloud-15.0.1.tgz#5bbc63c8d46396595ed651b559f55d51f9ee06c7"
|
||||
integrity sha512-EvUxiXF/t8czg6ORWRZ3bTPfUHH45Z3VMubmnBEWmcB3IOXQu25Du7KmUCEAqjqb1spuWrsWRzSxkIrpz8Xl9g==
|
||||
dependencies:
|
||||
axios "^0.21.1"
|
||||
axios "^0.21.2"
|
||||
chalk "4.1.0"
|
||||
dotenv "~10.0.0"
|
||||
fs-extra "^10.1.0"
|
||||
@ -3724,22 +3724,22 @@
|
||||
tar "6.1.11"
|
||||
yargs-parser ">=21.0.1"
|
||||
|
||||
"@nrwl/react@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/react/-/react-15.0.0-rc1.tgz#0d4bb04e0dc9487239d35cabbc092f8fbf1051bd"
|
||||
integrity sha512-hVQTlxkLksgvG1K3qwj4UAt1YEn6da5L3eEkDj2dM2S6uZLl5+CoRuA3XxhkD7B7JTkmtADGZgQFDWWRRgZBNA==
|
||||
"@nrwl/react@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/react/-/react-15.0.7-rc.0.tgz#c45b70c4c15787bdc333a62af490dc04200829cf"
|
||||
integrity sha512-cHpIfsgtDYLFCNuheQu1Oq8mXdHVIks9BDB3thf+BKk9qErSLEqI4H4Z8WclIfWTXMmMDMGCzd+IGE7TMp91mQ==
|
||||
dependencies:
|
||||
"@babel/core" "^7.15.0"
|
||||
"@babel/preset-react" "^7.14.5"
|
||||
"@nrwl/cypress" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/jest" "15.0.0-rc1"
|
||||
"@nrwl/js" "15.0.0-rc1"
|
||||
"@nrwl/linter" "15.0.0-rc1"
|
||||
"@nrwl/storybook" "15.0.0-rc1"
|
||||
"@nrwl/web" "15.0.0-rc1"
|
||||
"@nrwl/webpack" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/cypress" "15.0.7-rc.0"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/jest" "15.0.7-rc.0"
|
||||
"@nrwl/js" "15.0.7-rc.0"
|
||||
"@nrwl/linter" "15.0.7-rc.0"
|
||||
"@nrwl/storybook" "15.0.7-rc.0"
|
||||
"@nrwl/web" "15.0.7-rc.0"
|
||||
"@nrwl/webpack" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
"@phenomnomnominal/tsquery" "4.1.1"
|
||||
"@pmmmwh/react-refresh-webpack-plugin" "^0.5.7"
|
||||
"@svgr/webpack" "^6.1.2"
|
||||
@ -3755,14 +3755,14 @@
|
||||
webpack "^5.58.1"
|
||||
webpack-merge "^5.8.0"
|
||||
|
||||
"@nrwl/rollup@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/rollup/-/rollup-15.0.0-rc1.tgz#94a0503d59f6b39f7234b36a1128e582ad07e709"
|
||||
integrity sha512-veCbeiEGY4dweiWDAOSyh4sUn/Z8tVY3wY+UCxnLHkDWesSlDcTihdbYTW9gdHb/GvqvaS/421CmNjIW+nkPcw==
|
||||
"@nrwl/rollup@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/rollup/-/rollup-15.0.7-rc.0.tgz#668befa75b0320aacca44a1b8cecde8aaee367dc"
|
||||
integrity sha512-zOSeHfCa+Ln39JtbzbDRY0M+JNSFSUOC0Vw+ap9mzk+t5+hpc52/FYzzxw5yhIuhLBSjVskL0di5yVyCXq7M3w==
|
||||
dependencies:
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/js" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/js" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
"@rollup/plugin-babel" "^5.3.0"
|
||||
"@rollup/plugin-commonjs" "^20.0.0"
|
||||
"@rollup/plugin-image" "^2.1.0"
|
||||
@ -3782,25 +3782,18 @@
|
||||
rxjs "^6.5.4"
|
||||
tslib "^2.3.0"
|
||||
|
||||
"@nrwl/storybook@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/storybook/-/storybook-15.0.0-rc1.tgz#967ae71f0175a0c5902502fec7ad8906929f53ae"
|
||||
integrity sha512-8H+GMG0Z/4WgQx4UsG8dmVQ905QG48dBriHq6lBJKStTAya/z3UxCfSeudBxQoMwl6a6+QHata8ssvmT/mx4GQ==
|
||||
"@nrwl/storybook@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/storybook/-/storybook-15.0.7-rc.0.tgz#9bc57c5ff75f0f14557ff7e0229b024d8ea22c2e"
|
||||
integrity sha512-WO2hHmjcGEC/mPIZatxENyrzkl+psKmHbFlwUHHYlkRpql+YxqmuH6oS6vCErHCbEOjTla/KlMimUSljXCOxag==
|
||||
dependencies:
|
||||
"@nrwl/cypress" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/linter" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/cypress" "15.0.7-rc.0"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/linter" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
dotenv "~10.0.0"
|
||||
semver "7.3.4"
|
||||
|
||||
"@nrwl/tao@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-15.0.0-rc1.tgz#3cd1fb70df0d3d33ab03fc6208bcf2cc5f332039"
|
||||
integrity sha512-6LeAB8GIRLCt4ISJYYkl6W0QQ0zBajfZs2Vrg+uTDKSpHZI4YNWBFrPMpqpVWCqY4+ckcubOn1TAX19wytIs8g==
|
||||
dependencies:
|
||||
nx "15.0.0-rc1"
|
||||
|
||||
"@nrwl/tao@15.0.3":
|
||||
version "15.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-15.0.3.tgz#2802fe4e8e973c651aadb0caab574fe452972dbc"
|
||||
@ -3808,10 +3801,17 @@
|
||||
dependencies:
|
||||
nx "15.0.3"
|
||||
|
||||
"@nrwl/web@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/web/-/web-15.0.0-rc1.tgz#997db0b504967db7315f9f07c6394d3be0dec8ff"
|
||||
integrity sha512-I/e5d698NF3sXkTEvxf6MvB12NpuV1Oj1yUbCi3i53HCaZNpBQ78Tlf76XPmroqxyW8ng9aYnREZxG9GD8pQ+g==
|
||||
"@nrwl/tao@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-15.0.7-rc.0.tgz#639fba8bef1865cb48436cdffee664e4825895f2"
|
||||
integrity sha512-jQqb9+96Z4xNPR+FIhYFTs0vMtFlT2IaE4a+QSeXmNyY87O2pBQcPrW5eTkAYXMoQelzkF3kRC/xnI3djpHdcA==
|
||||
dependencies:
|
||||
nx "15.0.7-rc.0"
|
||||
|
||||
"@nrwl/web@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/web/-/web-15.0.7-rc.0.tgz#5d05ef52e600c578237df8839b0451d5023a96b8"
|
||||
integrity sha512-XgMdgZE6OblItpKHbXKflACSmFdg7nobYnly+R0cETAMyQDbiqHgMZfP65UphvC0ShhWBRVdfVM5qZUxhuVO8A==
|
||||
dependencies:
|
||||
"@babel/core" "^7.15.0"
|
||||
"@babel/plugin-proposal-class-properties" "^7.14.5"
|
||||
@ -3820,14 +3820,14 @@
|
||||
"@babel/preset-env" "^7.15.0"
|
||||
"@babel/preset-typescript" "^7.15.0"
|
||||
"@babel/runtime" "^7.14.8"
|
||||
"@nrwl/cypress" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/jest" "15.0.0-rc1"
|
||||
"@nrwl/js" "15.0.0-rc1"
|
||||
"@nrwl/linter" "15.0.0-rc1"
|
||||
"@nrwl/rollup" "15.0.0-rc1"
|
||||
"@nrwl/webpack" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/cypress" "15.0.7-rc.0"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/jest" "15.0.7-rc.0"
|
||||
"@nrwl/js" "15.0.7-rc.0"
|
||||
"@nrwl/linter" "15.0.7-rc.0"
|
||||
"@nrwl/rollup" "15.0.7-rc.0"
|
||||
"@nrwl/webpack" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
babel-plugin-const-enum "^1.0.1"
|
||||
babel-plugin-macros "^2.8.0"
|
||||
babel-plugin-transform-typescript-metadata "^0.3.1"
|
||||
@ -3837,14 +3837,14 @@
|
||||
ignore "^5.0.4"
|
||||
tslib "^2.3.0"
|
||||
|
||||
"@nrwl/webpack@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/webpack/-/webpack-15.0.0-rc1.tgz#5a96a627d753260311733b39607f8df48be4d4f3"
|
||||
integrity sha512-orn+ZZ+xfwW4Hz1ZhiKBMdgnYtlG82HsGYLMZbIqpXXQWQeBdCCDbcfX0akKHHvIOvReIUQ++pR/t+ujWKUmaw==
|
||||
"@nrwl/webpack@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/webpack/-/webpack-15.0.7-rc.0.tgz#3359b573b97469fff3888dc7b44c9411e393ffda"
|
||||
integrity sha512-flED0FKfvi6Hp2RpUjfF0Nk/TzFm8CFMOZcxCLaezFcHY2BRPOYh6+bKTjWd+aO6PG/RcrKh0+pIMeXEf4jHHA==
|
||||
dependencies:
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/js" "15.0.0-rc1"
|
||||
"@nrwl/workspace" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/js" "15.0.7-rc.0"
|
||||
"@nrwl/workspace" "15.0.7-rc.0"
|
||||
autoprefixer "^10.4.9"
|
||||
babel-loader "^8.2.2"
|
||||
browserslist "^4.16.6"
|
||||
@ -3852,6 +3852,7 @@
|
||||
chalk "4.1.0"
|
||||
chokidar "^3.5.1"
|
||||
copy-webpack-plugin "^10.2.4"
|
||||
css-loader "^6.4.0"
|
||||
css-minimizer-webpack-plugin "^3.4.1"
|
||||
dotenv "~10.0.0"
|
||||
file-loader "^6.2.0"
|
||||
@ -3889,14 +3890,14 @@
|
||||
webpack-sources "^3.2.3"
|
||||
webpack-subresource-integrity "^5.1.0"
|
||||
|
||||
"@nrwl/workspace@15.0.0-rc1":
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/workspace/-/workspace-15.0.0-rc1.tgz#06c92d9d7e920c840a8c22489906abec5dd05bc3"
|
||||
integrity sha512-2IPWPteY8AfAr/ktUyuxh7BY4dI852zC4fbkb8nHOqfqpBCzsF6R5/MJOzxk1Hxt1QWnJpxXDUNWYCfl1vbnuw==
|
||||
"@nrwl/workspace@15.0.7-rc.0":
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/@nrwl/workspace/-/workspace-15.0.7-rc.0.tgz#f54e53a9eb500238f810801390a0711e8d7db852"
|
||||
integrity sha512-TpezR5tr7xEHkcVCQSCHhiif+iM4AOZzgfdVNvoHGHFg9U7Iev2Wir7/3/S3wwdi45mqzacticNEDgdC6RQI/A==
|
||||
dependencies:
|
||||
"@nrwl/devkit" "15.0.0-rc1"
|
||||
"@nrwl/jest" "15.0.0-rc1"
|
||||
"@nrwl/linter" "15.0.0-rc1"
|
||||
"@nrwl/devkit" "15.0.7-rc.0"
|
||||
"@nrwl/jest" "15.0.7-rc.0"
|
||||
"@nrwl/linter" "15.0.7-rc.0"
|
||||
"@parcel/watcher" "2.0.4"
|
||||
chalk "4.1.0"
|
||||
chokidar "^3.5.1"
|
||||
@ -3911,7 +3912,7 @@
|
||||
ignore "^5.0.4"
|
||||
minimatch "3.0.5"
|
||||
npm-run-path "^4.0.1"
|
||||
nx "15.0.0-rc1"
|
||||
nx "15.0.7-rc.0"
|
||||
open "^8.4.0"
|
||||
rxjs "^6.5.4"
|
||||
semver "7.3.4"
|
||||
@ -7477,7 +7478,7 @@ axios@1.0.0:
|
||||
form-data "^4.0.0"
|
||||
proxy-from-env "^1.1.0"
|
||||
|
||||
axios@^0.21.1:
|
||||
axios@^0.21.2:
|
||||
version "0.21.4"
|
||||
resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575"
|
||||
integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==
|
||||
@ -8680,6 +8681,11 @@ cli-width@^3.0.0:
|
||||
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
|
||||
integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
|
||||
|
||||
client-only@0.0.1:
|
||||
version "0.0.1"
|
||||
resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1"
|
||||
integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==
|
||||
|
||||
clipanion@3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/clipanion/-/clipanion-3.1.0.tgz#3e217dd6476bb9236638b07eb4673f7309839819"
|
||||
@ -11013,12 +11019,12 @@ escodegen@^2.0.0:
|
||||
optionalDependencies:
|
||||
source-map "~0.6.1"
|
||||
|
||||
eslint-config-next@12.3.1:
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.3.1.tgz#5d4eb0b7903cea81fd0d5106601d3afb0a453ff4"
|
||||
integrity sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg==
|
||||
eslint-config-next@13.0.0:
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.0.0.tgz#d533ee1dbd6576fd3759ba4db4d5a6c4e039c242"
|
||||
integrity sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==
|
||||
dependencies:
|
||||
"@next/eslint-plugin-next" "12.3.1"
|
||||
"@next/eslint-plugin-next" "13.0.0"
|
||||
"@rushstack/eslint-patch" "^1.1.3"
|
||||
"@typescript-eslint/parser" "^5.21.0"
|
||||
eslint-import-resolver-node "^0.3.6"
|
||||
@ -11626,7 +11632,7 @@ fast-glob@^2.2.6:
|
||||
merge2 "^1.2.3"
|
||||
micromatch "^3.1.10"
|
||||
|
||||
fast-glob@^3.0.3, fast-glob@^3.2.11, fast-glob@^3.2.5, fast-glob@^3.2.7, fast-glob@^3.2.9:
|
||||
fast-glob@^3.0.3, fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.5, fast-glob@^3.2.7, fast-glob@^3.2.9:
|
||||
version "3.2.12"
|
||||
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
|
||||
integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
|
||||
@ -15204,6 +15210,13 @@ less-loader@11.0.0:
|
||||
dependencies:
|
||||
klona "^2.0.4"
|
||||
|
||||
less-loader@11.1.0:
|
||||
version "11.1.0"
|
||||
resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-11.1.0.tgz#a452384259bdf8e4f6d5fdcc39543609e6313f82"
|
||||
integrity sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==
|
||||
dependencies:
|
||||
klona "^2.0.4"
|
||||
|
||||
less-loader@^10.1.0:
|
||||
version "10.2.0"
|
||||
resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-10.2.0.tgz#97286d8797dc3dc05b1d16b0ecec5f968bdd4e32"
|
||||
@ -16444,31 +16457,31 @@ next-tick@1, next-tick@^1.1.0:
|
||||
resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb"
|
||||
integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==
|
||||
|
||||
next@12.3.1:
|
||||
version "12.3.1"
|
||||
resolved "https://registry.yarnpkg.com/next/-/next-12.3.1.tgz#127b825ad2207faf869b33393ec8c75fe61e50f1"
|
||||
integrity sha512-l7bvmSeIwX5lp07WtIiP9u2ytZMv7jIeB8iacR28PuUEFG5j0HGAPnMqyG5kbZNBG2H7tRsrQ4HCjuMOPnANZw==
|
||||
next@13.0.0:
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/next/-/next-13.0.0.tgz#6f07064a4f374562cf58677bef4dd06326ca648b"
|
||||
integrity sha512-puH1WGM6rGeFOoFdXXYfUxN9Sgi4LMytCV5HkQJvVUOhHfC1DoVqOfvzaEteyp6P04IW+gbtK2Q9pInVSrltPA==
|
||||
dependencies:
|
||||
"@next/env" "12.3.1"
|
||||
"@next/env" "13.0.0"
|
||||
"@swc/helpers" "0.4.11"
|
||||
caniuse-lite "^1.0.30001406"
|
||||
postcss "8.4.14"
|
||||
styled-jsx "5.0.7"
|
||||
styled-jsx "5.1.0"
|
||||
use-sync-external-store "1.2.0"
|
||||
optionalDependencies:
|
||||
"@next/swc-android-arm-eabi" "12.3.1"
|
||||
"@next/swc-android-arm64" "12.3.1"
|
||||
"@next/swc-darwin-arm64" "12.3.1"
|
||||
"@next/swc-darwin-x64" "12.3.1"
|
||||
"@next/swc-freebsd-x64" "12.3.1"
|
||||
"@next/swc-linux-arm-gnueabihf" "12.3.1"
|
||||
"@next/swc-linux-arm64-gnu" "12.3.1"
|
||||
"@next/swc-linux-arm64-musl" "12.3.1"
|
||||
"@next/swc-linux-x64-gnu" "12.3.1"
|
||||
"@next/swc-linux-x64-musl" "12.3.1"
|
||||
"@next/swc-win32-arm64-msvc" "12.3.1"
|
||||
"@next/swc-win32-ia32-msvc" "12.3.1"
|
||||
"@next/swc-win32-x64-msvc" "12.3.1"
|
||||
"@next/swc-android-arm-eabi" "13.0.0"
|
||||
"@next/swc-android-arm64" "13.0.0"
|
||||
"@next/swc-darwin-arm64" "13.0.0"
|
||||
"@next/swc-darwin-x64" "13.0.0"
|
||||
"@next/swc-freebsd-x64" "13.0.0"
|
||||
"@next/swc-linux-arm-gnueabihf" "13.0.0"
|
||||
"@next/swc-linux-arm64-gnu" "13.0.0"
|
||||
"@next/swc-linux-arm64-musl" "13.0.0"
|
||||
"@next/swc-linux-x64-gnu" "13.0.0"
|
||||
"@next/swc-linux-x64-musl" "13.0.0"
|
||||
"@next/swc-win32-arm64-msvc" "13.0.0"
|
||||
"@next/swc-win32-ia32-msvc" "13.0.0"
|
||||
"@next/swc-win32-x64-msvc" "13.0.0"
|
||||
|
||||
ng-packagr@~14.2.0:
|
||||
version "14.2.2"
|
||||
@ -16844,13 +16857,13 @@ nwsapi@^2.2.0:
|
||||
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0"
|
||||
integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==
|
||||
|
||||
nx@15.0.0-rc1:
|
||||
version "15.0.0-rc1"
|
||||
resolved "https://registry.yarnpkg.com/nx/-/nx-15.0.0-rc1.tgz#326ff31a285235fe8abae9e3e101d7d8d0ffd391"
|
||||
integrity sha512-d5c05UT1TsUIyXwaEUyP3bB/PVo5JzCvCeat0N2wsqhy3qkBXb2y5qPCdNE5b6ZFq2+WJT1vC2uSTL8yHv56CQ==
|
||||
nx@15.0.3, "nx@>=14.8.1 < 16":
|
||||
version "15.0.3"
|
||||
resolved "https://registry.yarnpkg.com/nx/-/nx-15.0.3.tgz#070845a871c63f5e009c5bf22ce005d5bbc2612d"
|
||||
integrity sha512-d9VWeArRfh4erWriWBMWK24nW6njZHXB/WVl/+8rTq1OirdpHrnILixzogEmTmaBKBE/XXR+zXFWVPHJlsEAYw==
|
||||
dependencies:
|
||||
"@nrwl/cli" "15.0.0-rc1"
|
||||
"@nrwl/tao" "15.0.0-rc1"
|
||||
"@nrwl/cli" "15.0.3"
|
||||
"@nrwl/tao" "15.0.3"
|
||||
"@parcel/watcher" "2.0.4"
|
||||
"@yarnpkg/lockfile" "^1.1.0"
|
||||
"@yarnpkg/parsers" "^3.0.0-rc.18"
|
||||
@ -16885,13 +16898,13 @@ nx@15.0.0-rc1:
|
||||
yargs "^17.4.0"
|
||||
yargs-parser "21.0.1"
|
||||
|
||||
nx@15.0.3, "nx@>=14.8.1 < 16":
|
||||
version "15.0.3"
|
||||
resolved "https://registry.yarnpkg.com/nx/-/nx-15.0.3.tgz#070845a871c63f5e009c5bf22ce005d5bbc2612d"
|
||||
integrity sha512-d9VWeArRfh4erWriWBMWK24nW6njZHXB/WVl/+8rTq1OirdpHrnILixzogEmTmaBKBE/XXR+zXFWVPHJlsEAYw==
|
||||
nx@15.0.7-rc.0:
|
||||
version "15.0.7-rc.0"
|
||||
resolved "https://registry.yarnpkg.com/nx/-/nx-15.0.7-rc.0.tgz#40a653c12c3ba1a31002d7ae60af947ca3dd468e"
|
||||
integrity sha512-JnHeHvh65gP6/gRP+TujtuWeRtskTjVHTD/zEujZjviapH1Y55F1soC4Kp1Ma7VwyklAemuaUgWH0rq8WFX2Jg==
|
||||
dependencies:
|
||||
"@nrwl/cli" "15.0.3"
|
||||
"@nrwl/tao" "15.0.3"
|
||||
"@nrwl/cli" "15.0.7-rc.0"
|
||||
"@nrwl/tao" "15.0.7-rc.0"
|
||||
"@parcel/watcher" "2.0.4"
|
||||
"@yarnpkg/lockfile" "^1.1.0"
|
||||
"@yarnpkg/parsers" "^3.0.0-rc.18"
|
||||
@ -21064,10 +21077,12 @@ styled-components@5.0.0:
|
||||
shallowequal "^1.1.0"
|
||||
supports-color "^5.5.0"
|
||||
|
||||
styled-jsx@5.0.7:
|
||||
version "5.0.7"
|
||||
resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.7.tgz#be44afc53771b983769ac654d355ca8d019dff48"
|
||||
integrity sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==
|
||||
styled-jsx@5.1.0:
|
||||
version "5.1.0"
|
||||
resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.0.tgz#4a5622ab9714bd3fcfaeec292aa555871f057563"
|
||||
integrity sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==
|
||||
dependencies:
|
||||
client-only "0.0.1"
|
||||
|
||||
stylehacks@^5.1.0:
|
||||
version "5.1.0"
|
||||
@ -21086,6 +21101,15 @@ stylus-loader@7.0.0:
|
||||
klona "^2.0.5"
|
||||
normalize-path "^3.0.0"
|
||||
|
||||
stylus-loader@7.1.0:
|
||||
version "7.1.0"
|
||||
resolved "https://registry.yarnpkg.com/stylus-loader/-/stylus-loader-7.1.0.tgz#19e09a98b19075c246e6e3f65e38b8cb89d2d6fb"
|
||||
integrity sha512-gNUEjjozR+oZ8cuC/Fx4LVXqZOgDKvpW9t2hpXHcxjfPYqSjQftaGwZUK+wL9B0QJ26uS6p1EmoWHmvld1dF7g==
|
||||
dependencies:
|
||||
fast-glob "^3.2.12"
|
||||
klona "^2.0.5"
|
||||
normalize-path "^3.0.0"
|
||||
|
||||
stylus-loader@^6.2.0:
|
||||
version "6.2.0"
|
||||
resolved "https://registry.yarnpkg.com/stylus-loader/-/stylus-loader-6.2.0.tgz#0ba499e744e7fb9d9b3977784c8639728a7ced8c"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user