mira-harness 0.2.4 → 0.2.5
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/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -362,7 +362,7 @@ var TIPS = [
|
|
|
362
362
|
"MIRA_NO_BANNER=1 hides this banner · --quiet hides all decoration"
|
|
363
363
|
];
|
|
364
364
|
function banner(version, opts = {}) {
|
|
365
|
-
if (opts.quiet || process.env.MIRA_NO_BANNER || !process.stderr.isTTY)
|
|
365
|
+
if (opts.quiet || process.env.MIRA_NO_BANNER || !process.stderr.isTTY || !process.stdout.isTTY)
|
|
366
366
|
return;
|
|
367
367
|
const tip = TIPS[new Date().getDate() % TIPS.length];
|
|
368
368
|
const lines = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mira-harness",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "A CLI + MCP dev-tool for communicating with the @mira Telegram bot — capture its full reply (buttons/links/media) and run a self-driving experiment catalog.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|