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/run

19 lines
269 B
Text
Raw Permalink Normal View History

#!/usr/bin/bash
rm -rf integration-build.tgz dist
yarn pack --out integration-build.tgz
mkdir .tmp
echo "{}" > .tmp/package.json
touch .tmp/yarn.lock
(
cd .tmp
yarn cache clean
yarn add ../integration-build.tgz ts-node
yarn womm "$@"
)
rm -rf .tmp