File tree Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 2.16.0 (2024-02-08)
2+ ### Features
3+ * feat(wpUpdate): ✨ standardize composer.json settings - minimum-stability, prefer-stable - skip php extensions by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/73
4+ * feat(vault): ✨ Add command for generating .vault_pass by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/100
5+
16## 2.15.7 (2023-11-08)
27### Features
38✨ Add custom tags (cost allocation tags) to S3 buckets and CloudFront distribution. This will allow us to see cost per bucket and distributions.
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ The features that is included now is the following:
1010* Create a development database
1111* Add all the config needed to be able to deploy the site to Kinsta with Trellis
1212
13+ ## 📚 Table Of Contents
1314## 🔧 Prerequisites
1415You will need to install and configure the following stuff to use Lisa CLI:
1516* [ Node] ( https://nodejs.org/en/ ) version >= 12
@@ -22,6 +23,7 @@ You will need to install and configure the following stuff to use Lisa CLI:
2223* [ AWS CLI] ( https://aws.amazon.com/cli/ ) version >= 2.4
2324* [ 1Password CLI] ( https://developer.1password.com/docs/cli ) version >= 2.18
2425
26+
2527## 🪚 Installation
2628``` npm i -g @triggerfishab/lisa-cli ```
2729
@@ -252,3 +254,18 @@ Example: `lisa s3 bucket set-lifecycle-policy`
252254
253255  ;
254256
257+ ### ` vault-pass-generate `
258+ Generate a new .vault_pass file for the project.
259+ <details >
260+ <summary >Read more</summary >
261+ <p >
262+ This command will generate a new .vault_pass file for the project. This is used to encrypt and decrypt the vault files in the project.
263+
264+ Example:
265+ ``` sh
266+ lisa vault-pass-generate
267+ ```
268+ </p >
269+ </details >
270+
271+   ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import { checkLisaVersion } from "./lib/versions.js"
2929import { generateVaultPass } from "./tasks/trellis.js"
3030
3131export const program = new Command ( )
32- export const LISA_VERSION = "2.15.7 "
32+ export const LISA_VERSION = "2.16.0 "
3333
3434resetConf ( )
3535checkNodeVersion ( )
Original file line number Diff line number Diff line change 11{
22 "name" : " @triggerfishab/lisa-cli" ,
3- "version" : " 2.15.7 " ,
3+ "version" : " 2.16.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