Created
May 17, 2017 16:47
-
-
Save stefanpenner/ff5be0c7c2a3aabed49dd00fda8fd461 to your computer and use it in GitHub Desktop.
This file contains 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 name in (curl 'https://emberobserver.com/api/v2/search/addons?query=process.env.EMBER_CLI_FASTBOOT®ex=false' | jq -r '.results | .[].addon') | |
printf "- [ ] " | |
printf $name | |
printf " [homepage](" | |
printf (npm info --json "$name" | jq -r '.homepage') | |
printf ")\n" | |
end | |
for name in (curl "https://emberobserver.com/api/v2/search/addons?query=fastboot-filter-initializers" | jq -r ".results | .[].addon") | |
printf "- [ ] " | |
printf $name | |
printf " [homepage](" | |
printf (npm info --json "$name" | jq -r '.homepage') | |
printf ")\n" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment