Skip to content

Instantly share code, notes, and snippets.

@tjadhav
Created March 27, 2018 12:32
Show Gist options
  • Save tjadhav/c9ec4ca82fa753152b51b9375e792851 to your computer and use it in GitHub Desktop.
Save tjadhav/c9ec4ca82fa753152b51b9375e792851 to your computer and use it in GitHub Desktop.
Annonate all AngularJS files
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