8 lines
141 B
Text
8 lines
141 B
Text
|
#!/usr/bin/bash
|
||
|
|
||
|
yarn pack --out integration-build.tgz
|
||
|
|
||
|
for filename in $(find ./integration -type f -print); do
|
||
|
ts-node $filename;
|
||
|
done
|