You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, now that we only have one command left (#48), we can probably refactor so that getRepositories is one single function.
Second, there are other use cases where I'll want to perform an action on "every repo i care about" - so it might be nice to extract that function into a separate package, so other things can reuse it.
The text was updated successfully, but these errors were encountered:
@ljharb is this what you'd been talking about before - i.e adding an option in repo-report to output all the repositories returned by funcgetRepositories?
So that repo-report-cache, can run repo-report -<new option> to get all repos of a user?
The combination of https://github.com/ljharb/repo-report/blob/main/src/commands/detail.js#L41 and https://github.com/ljharb/repo-report/blob/main/src/utils.js#L111 is what's used to get a list of all the repos I care about.
First, now that we only have one command left (#48), we can probably refactor so that
getRepositories
is one single function.Second, there are other use cases where I'll want to perform an action on "every repo i care about" - so it might be nice to extract that function into a separate package, so other things can reuse it.
The text was updated successfully, but these errors were encountered: