botapp-cli 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/dist/bin/bot.js +3 -3
- package/dist/bin/bot.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/bin/bot.js
CHANGED
|
@@ -747,7 +747,7 @@ Configured for ${serverUrl}`));
|
|
|
747
747
|
}
|
|
748
748
|
return;
|
|
749
749
|
}
|
|
750
|
-
if (opts.
|
|
750
|
+
if (opts.browser === false) {
|
|
751
751
|
console.error(pc4.red("Hosted server needs browser auth but --no-browser was passed."));
|
|
752
752
|
process.exitCode = 1;
|
|
753
753
|
return;
|
|
@@ -3036,7 +3036,7 @@ Invalid ACP stdout: ${line}`;
|
|
|
3036
3036
|
clientInfo: {
|
|
3037
3037
|
name: "botapp-daemon",
|
|
3038
3038
|
title: "botapp daemon",
|
|
3039
|
-
version: "0.1.
|
|
3039
|
+
version: "0.1.2"
|
|
3040
3040
|
}
|
|
3041
3041
|
});
|
|
3042
3042
|
const session = await request2("session/new", {
|
|
@@ -3161,7 +3161,7 @@ async function waitForChild(child, timeoutMs, label) {
|
|
|
3161
3161
|
}
|
|
3162
3162
|
|
|
3163
3163
|
// src/index.ts
|
|
3164
|
-
var version = "0.1.
|
|
3164
|
+
var version = "0.1.2";
|
|
3165
3165
|
var program = new Command19().name("bot").description("botapp CLI \u2014 operate apps from the command line").version(version).enablePositionalOptions(true).option("--json", "Output as JSON").option("-s, --server <url>", "Server URL override").option("-t, --token <token>", "Auth token override").option("-v, --verbose", "Verbose output");
|
|
3166
3166
|
program.addCommand(launchCommand);
|
|
3167
3167
|
program.addCommand(runCommand);
|