@bitwarden/cli 1.20.0 → 1.22.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 +27 -2
- package/build/bw.js +24948 -20252
- package/build/bw.js.map +1 -1
- package/build/locales/en/messages.json +44 -35
- package/package.json +53 -14
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)
|
|
69
|
-
-
|
|
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
|
|
|
@@ -82,8 +83,32 @@ You can then run commands from the `./build` folder:
|
|
|
82
83
|
node ./build/bw.js login
|
|
83
84
|
```
|
|
84
85
|
|
|
86
|
+
## We're Hiring!
|
|
87
|
+
|
|
88
|
+
Interested in contributing in a big way? Consider joining our team! We're hiring for many positions. Please take a look at our [Careers page](https://bitwarden.com/careers/) to see what opportunities are currently open as well as what it's like to work at Bitwarden.
|
|
89
|
+
|
|
85
90
|
## Contribute
|
|
86
91
|
|
|
87
92
|
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
93
|
|
|
89
94
|
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.
|
|
95
|
+
|
|
96
|
+
## Prettier
|
|
97
|
+
|
|
98
|
+
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:
|
|
99
|
+
|
|
100
|
+
1. Check out your local Branch
|
|
101
|
+
2. Run `git merge ec53a16c005e0dd9aef6845c18811e8b14067168`
|
|
102
|
+
3. Resolve any merge conflicts, commit.
|
|
103
|
+
4. Run `npm run prettier`
|
|
104
|
+
5. Commit
|
|
105
|
+
6. Run `git merge -Xours 910b4a24e649f21acbf4da5b2d422b121d514bd5`
|
|
106
|
+
7. Push
|
|
107
|
+
|
|
108
|
+
### Git blame
|
|
109
|
+
|
|
110
|
+
We also recommend that you configure git to ignore the prettier revision using:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
git config blame.ignoreRevsFile .git-blame-ignore-revs
|
|
114
|
+
```
|