8000 docs(website): upgrade heroicons dependency to 2.0.12 (#3404) · lerna/lerna@9b4642f · GitHub
[go: up one dir, main page]

Skip 8000 to content

Commit 9b4642f

Browse files
authored
docs(website): upgrade heroicons dependency to 2.0.12 (#3404)
1 parent e33be4b commit 9b4642f

File tree

4 files changed

+15
-18
lines changed

4 files changed

+15
-18
lines changed

website/package-lock.json

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

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@docusaurus/core": "^2.1.0",
1919
"@docusaurus/plugin-sitemap": "^2.1.0",
2020
"@docusaurus/preset-classic": "^2.1.0",
21-
"@heroicons/react": "^1.0.6",
21+
"@heroicons/react": "^2.0.12",
2222
"@mdx-js/react": "^1.6.22",
2323
"clsx": "^1.1.1",
2424
"prism-react-renderer": "^1.3.3",

website/src/components/about-lerna.tsx

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
import {
22
ClockIcon,
33
CogIcon,
4-
CollectionIcon,
54
CubeTransparentIcon,
6-
EmojiHappyIcon,
7-
GlobeIcon,
8-
LightningBoltIcon,
5+
RectangleGroupIcon,
6+
RectangleStackIcon,
97
ShareIcon,
108
SparklesIcon,
11-
TemplateIcon,
129
UsersIcon,
13-
} from "@heroicons/react/outline";
10+
} from "@heroicons/react/24/outline";
1411
import clsx from "clsx";
1512
import React from "react";
1613
import styles from "./about-lerna.module.css";
@@ -41,7 +38,7 @@ const callouts: Callout[] = [
4138
title: "Target Dependencies",
4239
text: "Lerna lets you specify how different targets (npm scripts) depend on each other.",
4340
link: "/docs/features/run-tasks#target-dependencies-aka-task-pipelines",
44-
icon: CollectionIcon,
41+
icon: RectangleStackIcon,
4542
},
4643
{
4744
title: "Efficient Execution",
@@ -92,7 +89,7 @@ const callouts: Callout[] = [
9289
text:
9390
"Why have separate tools for running tasks, linking packages and publishing them? Lerna does it--less config, less overhead.",
9491
link: "/docs/getting-started",
95-
icon: TemplateIcon,
92+
icon: RectangleGroupIcon,
9693
},
9794
];
9895

website/src/components/hero-lerna.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ChevronRightIcon, DuplicateIcon } from "@heroicons/react/outline";
1+
import { ChevronRightIcon, DocumentDuplicateIcon } from "@heroicons/react/24/outline";
22
import { CopyToClipboard } from "react-copy-to-clipboard";
33
import React, { useEffect, useState } from "react";
44
import clsx from "clsx";
@@ -66,7 +66,7 @@ export default function HeroLerna(): JSX.Element {
6666
<span className={styles.command__text}>
6767
<span aria-hidden="true">$</span> {command}
6868
</span>
69-
<DuplicateIcon className={styles.command__icon} />
69+
<DocumentDuplicateIcon className={styles.command__icon} />
7070
</button>
7171
</CopyToClipboard>
7272
</div>

0 commit comments

Comments
 (0)
0