@myna-sh/cli 0.14.0 → 0.15.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 +1 -1
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -5452,7 +5452,7 @@ function installCommand(manager, version) {
|
|
|
5452
5452
|
}
|
|
5453
5453
|
|
|
5454
5454
|
// src/version.ts
|
|
5455
|
-
var VERSION = true ? "0.
|
|
5455
|
+
var VERSION = true ? "0.15.0" : "0.0.0-dev";
|
|
5456
5456
|
var IS_RELEASE_BUILD = true;
|
|
5457
5457
|
|
|
5458
5458
|
// src/commands/doctor.ts
|
|
@@ -6007,7 +6007,7 @@ function normalizeGlobals(argv) {
|
|
|
6007
6007
|
}
|
|
6008
6008
|
function buildProgram() {
|
|
6009
6009
|
const program = new Command();
|
|
6010
|
-
program.name("myna").description("Myna \u2014 content
|
|
6010
|
+
program.name("myna").description("Myna \u2014 agent-first content and feedback infrastructure").version(VERSION, "-v, --version").option("--json", "emit a single machine-readable JSON value on stdout").option("--project <ref>", "project id or slug").option("--organization <ref>", "organization id or slug").option("--token <token>", "API token (overrides stored credentials)").option("--api-url <url>", "API base URL").option("--no-interactive", "disable prompts and browser opening").showHelpAfterError();
|
|
6011
6011
|
registerAuth(program);
|
|
6012
6012
|
registerDoctor(program);
|
|
6013
6013
|
registerUpdate(program);
|