Skip to content

Commit 77365a5

Browse files
authored
Merge pull request #24 from selemondev/chore/rename
chore: rename from create-vue-next to @selemondev/create-vue3-app
2 parents c9896e8 + 8b5957c commit 77365a5

File tree

12 files changed

+31
-31
lines changed

12 files changed

+31
-31
lines changed

CONTRIBUTING.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Every significant change is documented in the changelog file.
1818

1919
## Reporting Issues
2020

21-
Welcome to Create-Vue-Next CLI! We value your feedback and contributions to make this project better. If you encounter any bugs or have feature requests, please use [Github issues](https://github.com/selemondev/create-vue-next/issues) issues to submit them.
21+
Welcome to Create-Vue3-App CLI! We value your feedback and contributions to make this project better. If you encounter any bugs or have feature requests, please use [Github issues](https://github.com/selemondev/create-vue3-app/issues) issues to submit them.
2222

2323
Before reporting an issue, we ask you to:
2424

@@ -50,19 +50,19 @@ The following is a list of commit types:
5050

5151
### Commit Types:
5252

53-
- `feat`: Adding a new snippet or significant functionality to the Create-Vue-Next CLI.
53+
- `feat`: Adding a new snippet or significant functionality to the Create-Vue3-App CLI.
5454

55-
- `fix`: Addressing bugs or issues in existing Create-Vue-Next CLI.
55+
- `fix`: Addressing bugs or issues in existing Create-Vue3-App CLI.
5656

57-
- `docs`: Commits related to documentation changes for Create-Vue-Next CLI.
57+
- `docs`: Commits related to documentation changes for Create-Vue3-App CLI.
5858

59-
- `style`: Commits related to code formatting, styling, or theming of Create-Vue-Next CLI.
59+
- `style`: Commits related to code formatting, styling, or theming of Create-Vue3-App CLI.
6060

6161
- `refactor`: Code changes that enhance the library's structure without introducing new features or fixing bugs.
6262

63-
- `perf`: Commits aimed at improving performance for Create-Vue-Next CLI.
63+
- `perf`: Commits aimed at improving performance for Create-Vue3-App CLI.
6464

65-
- `test`: Commits related to testing Create-Vue-Next CLI.
65+
- `test`: Commits related to testing Create-Vue3-App CLI.
6666

6767
- `chore`: Other commits not affecting source or test files directly.
6868

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Create-Vue-Next CLI and Selemondev
3+
Copyright (c) 2024 Create-Vue3-App CLI and Selemondev
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img align="center" src="https://raw.githubusercontent.com/selemondev/create-vue-next/master/image/create-vue-next.png" height="400" />
33
</p>
44

5-
## Create Vue Next
5+
## Create Vue3 App
66

77
The Next Generation Vue Scaffolding Tool powered by Vite 🛠️
88

@@ -11,39 +11,39 @@ The Next Generation Vue Scaffolding Tool powered by Vite 🛠️
1111
### npx
1212

1313
```bash
14-
npx create-vue-next@latest
14+
npx @selemondev/create-vue3-app@latest
1515

1616
# OR
1717

18-
npx create-vue-next <project-name> --ts --eslint --tailwind --use-pnpm
18+
npx @selemondev/create-vue3-app <project-name> --ts --eslint --tailwind --use-pnpm
1919
```
2020

2121
### yarn
2222

2323
```bash
24-
yarn create vue-next
24+
yarn @selemondev/create-vue3-app
2525

2626
# OR
2727

28-
yarn create vue-next <project-name> --ts --eslint --tailwind --use-pnpm
28+
yarn @selemondev/create-vue3-app <project-name> --ts --eslint --tailwind --use-pnpm
2929
```
3030

3131
### pnpm
3232

3333
```bash
34-
pnpm create vue-next@latest
34+
pnpm @selemondev/create-vue3-app@latest
3535

3636
# OR
3737

38-
pnpm create vue-next@latest <project-name> --ts --eslint --tailwind --use-pnpm
38+
pnpm @selemondev/create-vue3-app@latest <project-name> --ts --eslint --tailwind --use-pnpm
3939
```
4040

4141
## Options
4242

43-
You can also pass command line arguments to set up a new project non-interactively. Run `create-vue-next --help` to see the available command line arguments:
43+
You can also pass command line arguments to set up a new project non-interactively. Run `@selemondev/create-vue3-app --help` to see the available command line arguments:
4444

4545
```bash
46-
Usage: create-vue-next <project-name> [options]
46+
Usage: @selemondev/create-vue3-app <project-name> [options]
4747

4848
Options:
4949
-V, --version output the version number

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "create-vue-next",
3-
"version": "0.0.2",
2+
"name": "@selemondev/create-vue3-app",
3+
"version": "0.0.3",
44
"description": "The Next Generation Vue Scaffolding Tool ✨",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -21,15 +21,15 @@
2121
}
2222
},
2323
"bin": {
24-
"create-vue-next": "./dist/index.js"
24+
"@selemondev/create-vue3-app": "./dist/index.js"
2525
},
2626
"files": [
2727
"dist",
2828
"src",
2929
"template"
3030
],
3131
"keywords": [
32-
"create-vue-next",
32+
"@selemondev/create-vue3-app",
3333
"Vue CLI",
3434
"Vue 3 CLI",
3535
"Vite CLI",

src/core/command/create-vue-next/initialLog.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { logger } from "../../../utils/logger";
22
async function initialLog() {
33
console.clear();
44

5-
logger.info('Welcome To Create Vue Next. The Next Generation Vue Scaffolding Tool ✨');
5+
logger.info('Welcome To Create Vue 3 App. The Next Generation Vue Scaffolding Tool ✨');
66

77
console.log();
88
}

src/core/command/create-vue-next/install.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function installDeps() {
1717

1818
await cmdIgnore('git', ['add .'])
1919

20-
await cmdIgnore('git', ['commit -m "Initialized by create-vue-next"'])
20+
await cmdIgnore('git', ['commit -m "Initialized by create-vue3-app"'])
2121
}
2222

2323

src/core/questions/vue/projectName.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import options from '../../../core/utils/vue/options'
22
import emptyDirName from '../../../utils/emptyDirName'
33
import { validatePackageName } from "../../../utils/validatePackageName"
4-
const defaultProjectName = 'create-vue-next'
4+
const defaultProjectName = 'create-vue3-app'
55

66
const packageName = [
77
{

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import options from './core/utils/vue/options';
88
async function main() {
99
program
1010
.version(packageJson.version)
11-
.description(`Create Vue Next. The Next Generation Vue Scaffolding Tool ⚡`)
11+
.description(`Create Vue3 App. The Next Generation Vue Scaffolding Tool ⚡`)
1212
.action((name: string) => {
1313
options.name = name;
1414
})

template/vue-js/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<link rel="icon" href="/favicon.ico">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Create Vue Next</title>
7+
<title>Create Vue 3 App</title>
88
</head>
99
<body>
1010
<div id="app"></div>

template/vue-js/src/components/TheWelcome.ejs

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
114114
<div>
115115
<h2 class="font-sans text-4xl font semibold">
116-
Welcome To Create Vue Next
116+
Welcome To Create Vue 3 App
117117
</h2>
118118
</div>
119119
@@ -154,7 +154,7 @@
154154
155155
<div>
156156
<h2 class="title">
157-
Welcome To Create Vue Next
157+
Welcome To Create Vue 3 App
158158
</h2>
159159
</div>
160160

template/vue-ts/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<link rel="icon" href="/favicon.ico">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Create Vue Next</title>
7+
<title>Create Vue 3 App</title>
88
</head>
99

1010
<body>

template/vue-ts/src/components/TheWelcome.ejs

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
114114
<div>
115115
<h2 class="font-sans text-4xl font semibold">
116-
Welcome To Create Vue Next
116+
Welcome To Create Vue 3 App
117117
</h2>
118118
</div>
119119
@@ -154,7 +154,7 @@
154154
155155
<div>
156156
<h2 class="title">
157-
Welcome To Create Vue Next
157+
Welcome To Create Vue 3 App
158158
</h2>
159159
</div>
160160

0 commit comments

Comments
 (0)