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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coderail-watch",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Stream terminal output to CodeRail backend over WebSocket.",
5
5
  "bin": {
6
6
  "coderail-watch": "bin/coderail-watch.js"