UNPKG

168 Bapplication/x-shView Raw
1#!/bin/sh
2set -eu
3out="dist"
4
5rm -rf "$out"
6
7tsc
8
9rm "$out/index.js"
10ncc build "src/index.ts" -o "$out/main"
11mv "$out/main/index.js" "$out/index.js"
12rm -rf "$out/main"