This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
npmw 836 B
#!/bin/sh

basedir=`dirname "$0"`

if [ -f "$basedir/mvnw" ]; then
  bindir="$basedir/target/node"
  repodir="$basedir/target/node/node_modules"
  installCommand="$basedir/mvnw -Pwebapp frontend:install-node-and-npm@install-node-and-npm"

  PATH="$basedir/$builddir/:$PATH"
  NPM_EXE="$basedir/$builddir/node_modules/npm/bin/npm-cli.js"
  NODE_EXE="$basedir/$builddir/node"
else
  bindir="$basedir/build/node/bin"
  repodir="$basedir/build/node/lib/node_modules"
  installCommand="$basedir/gradlew npmSetup"
fi

PATH="$bindir:$PATH"
NPM_EXE="$repodir/npm/bin/npm-cli.js"
NODE_EXE="$bindir/node"

if ! [ -x "$NPM_EXE" ]; then
  $installCommand || true
fi

if ! [ -x "$NPM_EXE" ]; then
  echo "Using npm installed globally"
  npm "$@"
else
  echo "Using npm installed locally $($NODE_EXE $NPM_EXE --version)"
  $NODE_EXE $NPM_EXE "$@"
fi