Changeset be5a13c in Klonkt for .claude/launch.json


Ignore:
Timestamp:
08/11/2026 05:11:58 AM (4 weeks ago)
Author:
Bart <bart@…>
Branches:
main
Children:
8b83cba
Parents:
8407e1e
Message:

launch.json pointed at a node that is not there

The preview config hardcoded $HOME/.local/node/bin/node, which does not exist
on this machine, so starting klonkt from the launch config failed outright.

Resolve node from PATH instead. The command already runs under bash -lc, so the
login profile is loaded and node comes from the MacPorts prefix at ~/opt/bin
(v24.17.0). One less absolute path to go stale.

Co-Authored-By: Claude Opus 5 <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .claude/launch.json

    r8407e1e rbe5a13c  
    55      "name": "klonkt",
    66      "runtimeExecutable": "bash",
    7       "runtimeArgs": ["-lc", "PORT=4020 PUBLIC_BASE_URL=http://localhost:4020 exec $HOME/.local/node/bin/node src/server.js"],
     7      "runtimeArgs": ["-lc", "PORT=4020 PUBLIC_BASE_URL=http://localhost:4020 exec node src/server.js"],
    88      "port": 4020
    99    }
Note: See TracChangeset for help on using the changeset viewer.