Skip to content

Instantly share code, notes, and snippets.

@stefanpenner
Created May 17, 2017 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanpenner/ff5be0c7c2a3aabed49dd00fda8fd461 to your computer and use it in GitHub Desktop.
Save stefanpenner/ff5be0c7c2a3aabed49dd00fda8fd461 to your computer and use it in GitHub Desktop.
for name in (curl 'https://emberobserver.com/api/v2/search/addons?query=process.env.EMBER_CLI_FASTBOOT&regex=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