UNPKG

209 Bapplication/x-shView Raw
1#!/bin/bash
2infile=$1 # index.js
3outfile=$2 # do-something
4
5current="$(dirname "$(which "$0")")"
6export PATH=$current:$current/../node_modules/.bin:$PATH
7
8mkdir -p dist
9to-node.sh $infile $outfile > /dev/null
10
\No newline at end of file