@bitwarden/cli 1.18.1 → 1.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -65,8 +65,9 @@ We provide detailed documentation and examples for using the CLI in our help cen
65
65
 
66
66
  **Requirements**
67
67
 
68
- - [Node.js](https://nodejs.org) v14.17 or greater
69
- - NPM v7
68
+ - [Node.js](https://nodejs.org) v16.13.1.
69
+ - Testing is done against Node 16, other versions may work, but are not guaranteed.
70
+ - NPM v8
70
71
 
71
72
  **Run the app**
72
73
 
@@ -87,3 +88,23 @@ node ./build/bw.js login
87
88
  Code contributions are welcome! Please commit any pull requests against the `master` branch. Learn more about how to contribute by reading the [`CONTRIBUTING.md`](CONTRIBUTING.md) file.
88
89
 
89
90
  Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the [`SECURITY.md`](SECURITY.md) file.
91
+
92
+ ## Prettier
93
+
94
+ We recently migrated to using Prettier as code formatter. All previous branches will need to updated to avoid large merge conflicts using the following steps:
95
+
96
+ 1. Check out your local Branch
97
+ 2. Run `git merge ec53a16c005e0dd9aef6845c18811e8b14067168`
98
+ 3. Resolve any merge conflicts, commit.
99
+ 4. Run `npm run prettier`
100
+ 5. Commit
101
+ 6. Run `git merge -Xours 910b4a24e649f21acbf4da5b2d422b121d514bd5`
102
+ 7. Push
103
+
104
+ ### Git blame
105
+
106
+ We also recommend that you configure git to ignore the prettier revision using:
107
+
108
+ ```bash
109
+ git config blame.ignoreRevsFile .git-blame-ignore-revs
110
+ ```