This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
works-on-my-machine/script/build

18 lines
294 B
Text
Raw Permalink Normal View History

#!/usr/bin/bash
yarn build:ts
# Certain files need hashbangs as they are executables.
NODE_HASHBANG="#!/usr/bin/env node"
addHashbang() {
echo $1
echo $NODE_HASHBANG > $1_prefixed
cat $1 >> $1_prefixed
mv $1_prefixed $1
}
addHashbang dist/cli.js
addHashbang dist/worker.js