dotfiles/shell/profile.d/node.sh
2025-08-03 18:07:37 -06:00

6 lines
183 B
Bash

export NODE_REPL_HISTORY="$HOME"/.local/state/node_repl_history
if ! [ -d "${NODE_REPL_HISTORY%/*}" ] ; then
mkdir -p "${NODE_REPL_HISTORY%/*}"
touch "$NODE_REPL_HISTORY"
fi