UNPKG

334 BPlain TextView Raw
1#!/usr/bin/env bash
2#
3# Links an npm module
4#
5set -euf -o pipefail
6
7# `npm link` does not work on CircleCI, so we're doing manual symlinking instead
8rm -rf "node_modules/$1"
9# Some modules have no dependencies in package.json, so we'll create it just in case
10mkdir -p "node_modules"
11ln -s "$(pwd)/../../$1/javascript" node_modules/$1