Skip to content

Commit b2310d1

Browse files
committed
chore: changed package name
1 parent 9751d8c commit b2310d1

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,39 +24,39 @@ The Next Generation React Scaffolding Tool powered by Vite 🛠️
2424
### npx
2525

2626
```bash
27-
npx create-react-next@latest
27+
npx @selemondev/create-react-next@latest
2828

2929
# OR
3030

31-
npx create-react-next <project-name> --ts --eslint --tailwind --use-pnpm
31+
npx @selemondev/create-react-next <project-name> --ts --eslint --tailwind --use-pnpm
3232
```
3333

3434
### yarn
3535

3636
```bash
37-
yarn create react-next
37+
yarn create @selemondev/create-react-next
3838

3939
# OR
4040

41-
yarn create react-next <project-name> --ts --eslint --tailwind --use-pnpm
41+
yarn create @selemondev/create-react-next <project-name> --ts --eslint --tailwind --use-pnpm
4242
```
4343

4444
### pnpm
4545

4646
```bash
47-
pnpm create react-next@latest
47+
pnpm create @selemondev/create-react-next@latest
4848

4949
# OR
5050

51-
pnpm create react-next@latest <project-name> --ts --eslint --tailwind --use-pnpm
51+
pnpm create @selemondev/create-react-next@latest <project-name> --ts --eslint --tailwind --use-pnpm
5252
```
5353

5454
## Options
5555

5656
You can also pass command line arguments to set up a new project non-interactively. Run `create-react-next --help` to see the available command line arguments:
5757

5858
```bash
59-
Usage: create-react-next <project-name> [options]
59+
Usage: @selemondev/create-react-next@latest <project-name> [options]
6060

6161
Options:
6262
-V, --version output the version number

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "create-react-next",
2+
"name": "@selemondev/create-react-next",
33
"version": "1.0.1",
44
"description": "The Next Generation React Scaffolding Tool ✨",
55
"type": "module",
@@ -21,15 +21,15 @@
2121
}
2222
},
2323
"bin": {
24-
"create-react-next": "./dist/index.js"
24+
"@selemondev/create-react-next": "./dist/index.js"
2525
},
2626
"files": [
2727
"dist",
2828
"src",
2929
"template"
3030
],
3131
"keywords": [
32-
"create-react-next",
32+
"@selemondev/create-react-next",
3333
"React 18 CLI",
3434
"React CLI",
3535
"Vite CLI",

0 commit comments

Comments
 (0)