@node9/proxy 1.12.5 → 1.12.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/dist/cli.js CHANGED
@@ -9426,7 +9426,7 @@ function registerScanCommand(program2) {
9426
9426
  import_chalk2.default.cyan.bold("\u{1F50D} Scanning your AI history") + import_chalk2.default.dim(" \u2014 what would node9 have caught?")
9427
9427
  );
9428
9428
  console.log("");
9429
- const useTTY = process.stdout.isTTY === true;
9429
+ const useTTY = process.stdout.isTTY === true && process.env.NODE9_WRAPPER !== "1";
9430
9430
  if (!useTTY) {
9431
9431
  process.stdout.write(
9432
9432
  " " + import_chalk2.default.dim("Scanning your history \u2014 this may take a moment...\n")
package/dist/cli.mjs CHANGED
@@ -9406,7 +9406,7 @@ function registerScanCommand(program2) {
9406
9406
  chalk2.cyan.bold("\u{1F50D} Scanning your AI history") + chalk2.dim(" \u2014 what would node9 have caught?")
9407
9407
  );
9408
9408
  console.log("");
9409
- const useTTY = process.stdout.isTTY === true;
9409
+ const useTTY = process.stdout.isTTY === true && process.env.NODE9_WRAPPER !== "1";
9410
9410
  if (!useTTY) {
9411
9411
  process.stdout.write(
9412
9412
  " " + chalk2.dim("Scanning your history \u2014 this may take a moment...\n")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node9/proxy",
3
- "version": "1.12.5",
3
+ "version": "1.12.6",
4
4
  "description": "The Sudo Command for AI Agents. Execution Security for Claude Code & MCP.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",