Add cmd wrapper script
This commit is contained in:
21
framework/shims/node.common
Normal file
21
framework/shims/node.common
Normal file
@@ -0,0 +1,21 @@
|
||||
# FIXME this shouldn't be hardcoded here of course
|
||||
|
||||
nodejs_binary_dir="$DIR/../binaries/node-v22.15.1-linux-x64/bin"
|
||||
|
||||
# This might be too restrictive. Or not restrictive enough.
|
||||
PATH="$nodejs_binary_dir":/bin:/usr/bin
|
||||
|
||||
|
||||
project_root="$DIR/../.."
|
||||
|
||||
node_dir="$project_root/$nodejs_binary_dir"
|
||||
|
||||
export NPM_CONFIG_PREFIX="$node_dir/npm"
|
||||
export NPM_CONFIG_CACHE="$node_dir/cache"
|
||||
export NPM_CONFIG_TMP="$node_dir/tmp"
|
||||
export NODE_PATH="$node_dir/node_modules"
|
||||
|
||||
echo $NPM_CONFIG_PREFIX
|
||||
echo $NPM_CONFIG_CACHE
|
||||
echo $NPM_CONFIG_TMP
|
||||
echo $NODE_PATH
|
||||
Reference in New Issue
Block a user