UNPKG

192 BPlain TextView Raw
1#!/bin/sh
2
3DIRECTORY="./node_modules"
4if [ ! -d "$DIRECTORY" ]; then
5 echo "Cannot find node_modules folder, please run 'npm install' first"
6 exit -1
7fi
8
9./node_modules/.bin/post-merge "$@"