Skip to content

Commit

Permalink
feat: CSS Modules -> CSS Loader
Browse files Browse the repository at this point in the history
  • Loading branch information
junghyeonsu committed Dec 4, 2024
1 parent 5f167e1 commit b32c6cc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/content/docs/react/get-started/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ npx @seed-design/cli@latest init
◇ Are you using React Server Components?
│ No
◇ Would you like to use CSS Modules? (If true, CSS import will be added in components)
◇ Would you like to use CSS Loader? (If true, CSS import will be added in components)
│ Yes
◇ Enter the path to your seed-design directory
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/react/get-started/installation/next.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ npx @seed-design/cli@latest init
◇ Are you using React Server Components?
│ No
◇ Would you like to use CSS Modules? (If true, CSS import will be added in components)
◇ Would you like to use CSS Loader? (If true, CSS import will be added in components)
│ Yes
◇ Enter the path to your seed-design directory
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/react/get-started/installation/vite.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ npx @seed-design/cli@latest init
◇ Are you using React Server Components?
│ No
◇ Would you like to use CSS Modules? (If true, CSS import will be added in components)
◇ Would you like to use CSS Loader? (If true, CSS import will be added in components)
│ Yes
◇ Enter the path to your seed-design directory
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/react/get-started/migration-to-v3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ npx @seed-design/cli@latest init
◇ Are you using React Server Components?
│ No
◇ Would you like to use CSS Modules? (If true, CSS import will be added in components)
◇ Would you like to use CSS Loader? (If true, CSS import will be added in components)
│ Yes
◇ Enter the path to your seed-design directory
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/react/get-started/seed-design.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ npx @seed-design/cli@latest init
◇ Are you using React Server Components?
│ No
◇ Would you like to use CSS Modules? (If true, CSS import will be added in components)
◇ Would you like to use CSS Loader? (If true, CSS import will be added in components)
│ Yes
◇ Enter the path to your seed-design directory
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const initCommand = (cli: CAC) => {
}),
css: () =>
p.confirm({
message: `Would you like to use ${highlight("CSS Modules")}? (If true, CSS import will be added in components)`,
message: `Would you like to use ${highlight("CSS Loader")}? (If true, CSS import will be added in components)`,
initialValue: true,
}),
path: () =>
Expand Down

0 comments on commit b32c6cc

Please sign in to comment.