forbocai 0.0.5 → 0.0.6
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 +13 -0
- package/dist/cli.js +1 -1
- package/dist/cli.mjs +1 -1
- package/package.json +1 -1
- package/postinstall.js +1 -1
package/README.md
CHANGED
|
@@ -119,6 +119,19 @@ console.log(response.dialogue);
|
|
|
119
119
|
---
|
|
120
120
|
|
|
121
121
|
**ᚠ ᛫ ᛟ ᛫ ᚱ ᛫ ᛒ ᛫ ᛟ ᛫ ᚲ**
|
|
122
|
+
|
|
123
|
+
## Developers
|
|
124
|
+
|
|
125
|
+
`Dev_Ops // Releáse_Cycles`
|
|
126
|
+
|
|
127
|
+
To redeploy the SDK to NPM:
|
|
128
|
+
|
|
129
|
+
1. **Bump Version**: Update `version` in `package.json`.
|
|
130
|
+
2. **Build**: `npm run build` (Generates `dist/`).
|
|
131
|
+
3. **Publish**: `npm publish --access public`.
|
|
132
|
+
|
|
133
|
+
> **Note**: You must be authenticated with `npm adduser` or have an `.npmrc` with a valid token.
|
|
134
|
+
|
|
122
135
|
|
|
123
136
|
## License
|
|
124
137
|
|
package/dist/cli.js
CHANGED
|
@@ -25,7 +25,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
25
25
|
|
|
26
26
|
// src/cli.ts
|
|
27
27
|
var import_https = __toESM(require("https"));
|
|
28
|
-
var API_URL = "https://api
|
|
28
|
+
var API_URL = "https://forbocai-api.vercel.app";
|
|
29
29
|
var args = process.argv.slice(2);
|
|
30
30
|
var command = args[0];
|
|
31
31
|
var subcommand = args[1];
|
package/dist/cli.mjs
CHANGED
package/package.json
CHANGED
package/postinstall.js
CHANGED