coderail-watch 0.1.1 → 0.1.2
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 +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,3 +15,15 @@ cd tools/coderail-watch
|
|
|
15
15
|
npm login
|
|
16
16
|
npm run publish:public
|
|
17
17
|
```
|
|
18
|
+
|
|
19
|
+
If you are fixing a published bug, bump the version before publishing:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
cd tools/coderail-watch
|
|
23
|
+
npm version patch
|
|
24
|
+
npm run publish:public
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
2FA note:
|
|
28
|
+
|
|
29
|
+
- npm no longer allows adding new TOTP 2FA from the CLI. Enable 2FA with a security key at https://npmjs.com/settings/<your-username>/tfa before publishing.
|