Created
March 27, 2018 12:32
-
-
Save tjadhav/c9ec4ca82fa753152b51b9375e792851 to your computer and use it in GitHub Desktop.
Annonate all AngularJS files
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 f in $(find path/to/client -name '*.js'); | |
do | |
ng-annotate -a $f -o $f; | |
echo $f; | |
done | |
echo "Done!"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment