Created
December 25, 2019 16:12
-
-
Save hyochan/1afad0d9cd585c48f6e2d56442c2b156 to your computer and use it in GitHub Desktop.
Find all typescript definition files and generate flow types with flowgen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in $(find lib -type f -name "*.d.ts"); | |
do sh -c "flowgen $i -o ${i%.*.*}.js.flow"; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment