File tree 5 files changed +15
-8
lines changed
5 files changed +15
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## v1.0.5
2
+
3
+ > ` 2024-04-25 `
4
+
5
+ ### 🎉 Feature
6
+ - Added ` --s ` and ` --f ` aliases.
7
+
1
8
## v1.0.4
2
9
3
10
> ` 2024-04-23 `
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Available flags:
66
66
67
67
| flag | description |
68
68
| --- | --- |
69
- | ` --start ` | Automatically starts the development server at the end of installation. |
70
- | ` --force ` | Force overrides existing project directory. |
69
+ | ` --start ` ` --s ` | Automatically starts the development server at the end of installation. |
70
+ | ` --force ` ` --f ` | Force overrides existing project directory. |
71
71
| ` --builder ` ` --b ` | Installs Vueform Builder. |
72
72
| ` --publicKey ` ` --pk ` | Sets Public Key when installing Vueform + Builder. |
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " create-vueform" ,
3
- "version" : " 1.0.4 " ,
3
+ "version" : " 1.0.5 " ,
4
4
"type" : " module" ,
5
5
"license" : " MIT" ,
6
6
"author" : " Adam Berecz" ,
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ const defaultProjectName = 'vueform-project'
28
28
const packageInfo = pkgFromUserAgent ( process . env . npm_config_user_agent )
29
29
const packageManager = packageInfo ? packageInfo . name : 'npm'
30
30
const __dirname = path . dirname ( fileURLToPath ( import . meta. url ) )
31
- const start = ! ! argv . start
32
- const force = ! ! argv . force
31
+ const start = ! ! argv . start || ! ! argv . s
32
+ const force = ! ! argv . force || ! ! argv . f
33
33
34
34
const frameworks = [
35
35
{ title : 'Vite' , value : 'vite' , command : {
You can’t perform that action at this time.
0 commit comments