Marc Cataford
e6ef369fdb
* build: ts-node no longer needed in main install * test: integration tests can use regular build package
7 lines
122 B
Bash
7 lines
122 B
Bash
#!/usr/bin/bash
|
|
|
|
yarn pack
|
|
|
|
for filename in $(find ./integration -type f -print); do
|
|
yarn dlx ts-node $filename;
|
|
done
|