File tree Expand file tree Collapse file tree 5 files changed +15
-8
lines changed Expand file tree Collapse file tree 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+
18## v1.0.4
29
310> ` 2024-04-23 `
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Available flags:
6666
6767| flag | description |
6868| --- | --- |
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. |
7171| ` --builder ` ` --b ` | Installs Vueform Builder. |
7272| ` --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 11{
22 "name" : " create-vueform" ,
3- "version" : " 1.0.4 " ,
3+ "version" : " 1.0.5 " ,
44 "type" : " module" ,
55 "license" : " MIT" ,
66 "author" : " Adam Berecz" ,
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ const defaultProjectName = 'vueform-project'
2828const packageInfo = pkgFromUserAgent ( process . env . npm_config_user_agent )
2929const packageManager = packageInfo ? packageInfo . name : 'npm'
3030const __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
3333
3434const frameworks = [
3535 { title : 'Vite' , value : 'vite' , command : {
You can’t perform that action at this time.
0 commit comments