File tree Expand file tree Collapse file tree 4 files changed +40
-4
lines changed Expand file tree Collapse file tree 4 files changed +40
-4
lines changed Original file line number Diff line number Diff line change 1+
2+ ## 2.17.0 (2024-04-11)
3+ ### Features
4+ * feat(wp update): ✨ fast wp update by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/82
5+
6+ ## 2.16.1 (2024-02-08)
7+ ### Features
8+ * feat(wpUpdate): ✨ standardize composer.json settings - minimum-stability, prefer-stable - skip php extensions by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/73
9+ * feat(vault): ✨ Add command for generating .vault_pass by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/100
10+
11+
112## 2.16.0 (2024-02-08)
213### Features
314* feat(wpUpdate): ✨ standardize composer.json settings - minimum-stability, prefer-stable - skip php extensions by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/73
Original file line number Diff line number Diff line change @@ -211,8 +211,33 @@ Update WordPress and Composer dependencies.
211211<details >
212212<summary >Read more</summary >
213213<p >
214+ Examples:
215+
216+ ``` sh
217+ lisa wp update
218+ ```
219+
220+ ``` sh
221+ lisa wp update --fast
222+ ```
223+
224+ commands that will be run:
225+
226+ ** without** _ --fast_
227+ ``` sh
228+ composer require composer/installers -W
229+ composer require roots/acorn -W
230+ composer require roots/wordpress -W
231+ composer require rector/rector -W --dev
232+ composer require squizlabs/php_codesniffer -W --dev
233+ composer require johnbillion/query-monitor -W --dev
234+ ```
235+ ** with** _ --fast_
236+ ``` sh
237+ composer require composer/installers roots/acorn roots/wordpress -W
238+ composer require rector/rector squizlabs/php_codesniffer johnbillion/query-monitor -W --dev
239+ ```
214240
215- Example: ` lisa wp update `
216241</p >
217242</details >
218243
@@ -268,4 +293,4 @@ lisa vault-pass-generate
268293</p >
269294</details >
270295
271-   ;
296+   ;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import { checkLisaVersion } from "./lib/versions.js"
2727import { generateVaultPass } from "./tasks/trellis.js"
2828
2929export const program = new Command ( )
30- export const LISA_VERSION = "2.16.1 "
30+ export const LISA_VERSION = "2.17.0 "
3131
3232resetConf ( )
3333checkNodeVersion ( )
Original file line number Diff line number Diff line change 11{
22 "name" : " @triggerfishab/lisa-cli" ,
3- "version" : " 2.16.1 " ,
3+ "version" : " 2.17.0 " ,
44 "description" : " CLI commands to generate a new project based on Lisa" ,
55 "main" : " ./index.js" ,
66 "bin" : {
You can’t perform that action at this time.
0 commit comments