project-compass 3.0.0 → 3.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-compass",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "description": "Ink-based project explorer that detects local repos and lets you build/test/run them without memorizing commands.",
5
5
  "main": "src/cli.js",
6
6
  "type": "module",
package/src/cli.js CHANGED
@@ -434,8 +434,8 @@ function Compass({rootPath, initialView = 'navigator'}) {
434
434
  return;
435
435
  }
436
436
 
437
- if (key.shift && key.upArrow) { scrollLogs(-1); return; }
438
- if (key.shift && key.downArrow) { scrollLogs(1); return; }
437
+ if (key.shift && key.upArrow) { scrollLogs(1); return; }
438
+ if (key.shift && key.downArrow) { scrollLogs(-1); return; }
439
439
 
440
440
  if (normalizedInput === '?') { setShowHelp((prev) => !prev); return; }
441
441
  if (shiftCombo('l') && lastCommandRef.current) { runProjectCommand(lastCommandRef.current.commandMeta, lastCommandRef.current.project); return; }