@centry-digital/bukku-cli 2.0.2 → 2.0.3
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
|
@@ -256,6 +256,18 @@ Errors are written to stderr as structured JSON, so they don't interfere with pi
|
|
|
256
256
|
3. Generate a new API token (or copy your existing one)
|
|
257
257
|
4. Note your company subdomain from the URL (e.g. `mycompany` from `mycompany.bukku.my`)
|
|
258
258
|
|
|
259
|
+
## Uninstalling
|
|
260
|
+
|
|
261
|
+
```bash
|
|
262
|
+
npm uninstall -g @centry-digital/bukku-cli
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
To also remove your saved configuration:
|
|
266
|
+
|
|
267
|
+
```bash
|
|
268
|
+
rm ~/.bukkurc
|
|
269
|
+
```
|
|
270
|
+
|
|
259
271
|
## Related
|
|
260
272
|
|
|
261
273
|
- [@centry-digital/bukku-mcp](https://www.npmjs.com/package/@centry-digital/bukku-mcp) -- MCP server for connecting AI assistants (Claude, etc.) to Bukku
|
package/package.json
CHANGED