@@ -144,17 +144,18 @@ buddy --help # view help menu
144
144
# please note: you may suffix any command with the
145
145
# `command --help` flag to review the help menu
146
146
147
- buddy install # installs your dependencies
147
+ buddy install # installs dependencies
148
+ buddy add # adds a stack or dependency
148
149
buddy fresh # fresh reinstall of all deps
149
- buddy clean # removes all your deps
150
+ buddy clean # removes all deps
150
151
151
- buddy update # auto-update deps & the Stacks framework
152
- buddy update :dependencies # auto-update deps & the Stacks framework
153
- buddy update :framework # auto-update deps & the Stacks framework
154
- buddy update :package-manager # auto-update deps & the Stacks framework
155
- buddy update :search-engine # auto-updates Meilisearch
156
- buddy update :node # update to latest project-defined node version
157
- buddy update :all # update Node, package manager, framework, dependencies
152
+ buddy upgrade # auto-upgrade deps, framework, node.js, and/or pnpm
153
+ buddy upgrade :dependencies # auto-upgrade deps & the Stacks framework
154
+ buddy upgrade :framework # auto-upgrade deps & the Stacks framework
155
+ buddy upgrade :package-manager # auto-upgrade deps & the Stacks framework
156
+ buddy upgrade :search-engine # auto-upgrades Meilisearch
157
+ buddy upgrade :node # upgrade to latest project-defined node version
158
+ buddy upgrade :all # upgrade Node, package manager, framework, dependencies
158
159
159
160
# if you need any more info on any command listed here, you may suffix
160
161
# any of them via the "help option", i.e. `buddy ... --help`
@@ -170,26 +171,31 @@ buddy development # `buddy dev` alias
170
171
# for Laravel folks, `serve` may ring more familiar than the `dev` name. Hence, we aliased it:
171
172
buddy serve
172
173
buddy serve:components
174
+ buddy serve:desktop
173
175
buddy serve:pages
174
176
buddy serve:functions
175
177
buddy serve:docs
176
178
177
179
# building for production (e.g. AWS, Google Cloud, npm, Vercel, Netlify, et al.)
178
180
buddy build # select a specific build (follow CLI prompts)
179
181
buddy build:components # build Vue component library & Web Component library
180
- buddy build:vue-components # build Vue 2 & 3-ready Component library
181
- buddy build:web-components # build framework agnostic Web Component library (i.e. Custom Elements)
182
- buddy build:functions # build function library
182
+ buddy build:desktop # build Desktop application
183
+ buddy build:library # build any or all libraries
183
184
buddy build:pages # build SSG pages
185
+ buddy build:functions # build function library
186
+ buddy build:web-components # build framework agnostic Web Component library (i.e. Custom Elements)
187
+ buddy build:vue-components # build Vue 2 & 3-ready Component library
184
188
buddy build:all # build all your code
185
189
186
190
# `buddy build` aliases
187
191
buddy prod
188
192
buddy prod:components
193
+ buddy prod:desktop
194
+ buddy prod:library
195
+ buddy prod:pages
196
+ buddy prod:functions
189
197
buddy prod:vue-components
190
198
buddy prod:web-components
191
- buddy prod:functions
192
- buddy prod:pages
193
199
buddy prod:all
194
200
buddy production # `buddy prod` alias
195
201
@@ -203,7 +209,7 @@ buddy make:page hello-world
203
209
buddy make:lang de
204
210
buddy make:notification welcome-email
205
211
buddy make:database cars
206
- buddy make:table brands
212
+ buddy make:table cars
207
213
buddy make:migration create_cars_table
208
214
buddy make:factory cars
209
215
buddy make:seed cars
@@ -255,12 +261,6 @@ stx fresh
255
261
buddy fresh
256
262
bud fresh
257
263
buddy fresh
258
- pnpm stx fresh
259
- pnpm buddy fresh
260
- pnpm buddy fresh
261
- pnpm fresh
262
- pnpm run fresh
263
- pnpm run buddy fresh
264
264
```
265
265
266
266
</details >
0 commit comments