Skip to content

Commit 3ddfc85

Browse files
committed
Fix Styled Components naming
1 parent a9f8968 commit 3ddfc85

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Technologies marked as _convenience installs_ are technologies that work out of
6262
| [Yarn](https://yarnpkg.com/) | [CLI Docs](https://yarnpkg.com/cli) - [GitHub repo](https://github.com/yarnpkg/berry) |
6363
| [npm](https://www.npmjs.com/) | [CLI Docs](https://docs.npmjs.com/cli/) |
6464
| [Emotion](https://emotion.sh/docs/introduction) | [Docs](https://emotion.sh/docs/introduction) - [GitHub repo](https://github.com/emotion-js/emotion) |
65-
| [styled-components](https://styled-components.com/) | [Docs](https://styled-components.com/docs) - [GitHub repo](https://github.com/styled-components/styled-components) |
65+
| [Styled Components](https://styled-components.com/) | [Docs](https://styled-components.com/docs) - [GitHub repo](https://github.com/styled-components/styled-components) |
6666
| [CSS Modules](https://github.com/css-modules/css-modules) | [Docs](https://github.com/css-modules/css-modules) - [Next.js-specific docs](https://nextjs.org/docs/basic-features/built-in-css-support#adding-component-level-css) |
6767
| [Sass](https://sass-lang.com/) <img width="14" alt="convenience install icon" src="assets/convenience-icon.png"> | [Docs](https://sass-lang.com/documentation) - [Next.js-specific docs](https://nextjs.org/docs/basic-features/built-in-css-support#sass-support) |
6868
| [React Hook Form](https://react-hook-form.com/) <img width="14" alt="convenience install icon" src="assets/convenience-icon.png"> | [Docs](https://react-hook-form.com/get-started) - [GitHub repo](https://github.com/react-hook-form/react-hook-form) |

src/main/questionnaire/questions/categories/styling.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const promptStyling = async (): Promise<StylingValue> => {
2323
},
2424
{
2525
value: stylingValues["styled-components"],
26-
name: "styled-components",
26+
name: "Styled Components",
2727
},
2828
{
2929
value: stylingValues["css-modules"],

src/main/setup/steps/add-readme/generate-technology-table-rows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const generateTechnologyTableRows = async (
3434
filter: flags.styling === "emotion",
3535
},
3636
{
37-
name: /* md */ `[styled-components](https://styled-components.com/)`,
37+
name: /* md */ `[Styled Components](https://styled-components.com/)`,
3838
links: /* md */ `[Docs](https://styled-components.com/docs) - [GitHub repo](https://github.com/styled-components/styled-components)`,
3939
filter: flags.styling === "styled-components",
4040
},

src/main/setup/steps/set-up-styled-components.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { install, packages } from "../packages"
33
import { Step } from "../step"
44

55
export const setUpStyledComponentsStep: Step = {
6-
description: "setting up styled-components",
6+
description: "setting up Styled Components",
77

88
shouldRun: async ({ flags }) => flags.styling === "styled-components",
99

0 commit comments

Comments
 (0)