9 lines
136 B
Bash
9 lines
136 B
Bash
#!/bin/bash
|
|
|
|
if command -v npm >/dev/null 2>&1; then
|
|
|
|
path_append ./node_modules/.bin
|
|
# load in any node functions
|
|
module_load node
|
|
|
|
fi
|