From 9de44ec12c25d6c9644f384e04f032e9df4f1d55 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 30 Dec 2015 17:38:11 +0100 Subject: npm-path: Put npm install before before $PATH ..in order to have npm updatable and usable through the global npm command --- .config/bash/npm-path.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/bash/npm-path.sh b/.config/bash/npm-path.sh index d3d211c..d11fc50 100644 --- a/.config/bash/npm-path.sh +++ b/.config/bash/npm-path.sh @@ -1,4 +1,4 @@ export NPM_PACKAGES="${HOME}/.local/npm-packages" -export PATH="${PATH}:${NPM_PACKAGES}/bin" +export PATH="${NPM_PACKAGES}/bin:${PATH}" export MANPATH="${MANPATH}:${NPM_PACKAGES}/share/man" export NODE_PATH="${NPM_PACKAGES}/lib/node_modules:$NODE_PATH" -- cgit