Skip to content

Commit 26c1ea2

Browse files
committed
fix: naming
1 parent 4ca4aff commit 26c1ea2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# CLI
2-
The CLI is designed to help you set up your project with [Justd](https://intentui.com) quickly and efficiently. It’s the easiest and most convenient way to install Justd, allowing you to get started with your project in just minutes.
2+
The CLI is designed to help you set up your project with [Intent UI](https://intentui.com) quickly and efficiently. It’s the easiest and most convenient way to install Intent UI, allowing you to get started with your project in just minutes.
33

44
## Existing Project
5-
If you already have a project set up—whether it’s built with Laravel, Next.js, Remix, Tanstack, or any other framework—simply run the following command to install Justd:
5+
If you already have a project set up—whether it’s built with Laravel, Next.js, Remix, Tanstack, or any other framework—simply run the following command to install Intent UI:
66
```bash
77
npx @intentui/cli@latest init
88
```
@@ -43,13 +43,13 @@ To get started, run: `cd new-project && npm run dev`
4343
```
4444

4545
## Add
46-
Once you’ve set up Justd, you can start adding components easily by running the `add` command:
46+
Once you’ve set up Intent UI, you can start adding components easily by running the `add` command:
4747
```bash
4848
npx @intentui/cli@latest add combo-box
4949
```
5050

5151
## Diff
52-
If you think your Justd setup might be outdated, don’t worry. You can check for changes by running the `diff` command:
52+
If you think your Intent UI setup might be outdated, don’t worry. You can check for changes by running the `diff` command:
5353
```bash
5454
npx @intentui/cli@latest diff
5555
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@intentui/cli",
33
"type": "module",
44
"version": "2.8.3",
5-
"description": "The command line interface for Justd.",
5+
"description": "The command line interface for Intent UI.",
66
"main": "dist/index.js",
77
"bin": {
88
"intentui": "dist/index.js"

src/commands/change-gray.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export async function changeGray(
3838
export async function setGray(overwriteConfirmation: boolean, selectedTheme?: string) {
3939
if (isTailwind(3)) {
4040
error(
41-
`This CLI supports ${highlight("Justd 2.x")}, built with ${highlight("Tailwind v4")}. However, you're currently using ${highlight("Tailwind v3")}.`,
41+
`This CLI supports ${highlight("Intent UI 2.x")}, built with ${highlight("Tailwind v4")}. However, you're currently using ${highlight("Tailwind v3")}.`,
4242
)
4343
process.exit(1)
4444
}

src/commands/start-new-project/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ export async function startNewProject(
159159
// const cliCommand = "intentui-cli"
160160
const cliCommand = "@intentui/cli@latest"
161161
const tsOrJs = language === "typescript" ? "--ts" : "--js"
162-
const initJustdCommand = ["npx", cliCommand, "init", tsOrJs, "--force", "--yes"]
163-
// const initJustdCommand = ["bunx", cliCommand, "init", tsOrJs, "--force", "--yes"]
164-
await executeCommand(initJustdCommand, "Finishing.")
162+
const initIntentUICommand = ["npx", cliCommand, "init", tsOrJs, "--force", "--yes"]
163+
// const initIntentUICommand = ["bunx", cliCommand, "init", tsOrJs, "--force", "--yes"]
164+
await executeCommand(initIntentUICommand, "Finishing.")
165165

166166
console.info("\nProject setup is now complete.")
167167
if (framework === "laravel") {

0 commit comments

Comments
 (0)