@hasna/terminal 1.3.7 → 1.3.8

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 CHANGED
@@ -449,7 +449,7 @@ else if (args.length > 0) {
449
449
  if (isIrreversible(command)) {
450
450
  console.error(`⚠ IRREVERSIBLE: $ ${command}`);
451
451
  console.error(` This command may kill processes, push code, or delete data.`);
452
- console.error(` Run with terminal exec "${command}" to bypass, or use the TUI for confirmation.`);
452
+ console.error(` Run directly in your shell if you're sure: ${command}`);
453
453
  process.exit(1);
454
454
  }
455
455
  // Show what we're running
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/terminal",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "Smart terminal wrapper for AI agents and humans — structured output, token compression, MCP server, natural language",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.tsx CHANGED
@@ -428,7 +428,7 @@ else if (args.length > 0) {
428
428
  if (isIrreversible(command)) {
429
429
  console.error(`⚠ IRREVERSIBLE: $ ${command}`);
430
430
  console.error(` This command may kill processes, push code, or delete data.`);
431
- console.error(` Run with terminal exec "${command}" to bypass, or use the TUI for confirmation.`);
431
+ console.error(` Run directly in your shell if you're sure: ${command}`);
432
432
  process.exit(1);
433
433
  }
434
434