#!/usr/bin/env bash

set -x -e -u

if [[ -f "${SRC_DIR}/package.json" ]]; then
  pushd "${SRC_DIR}"
  npm install
  popd
fi
