Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add help cli #775

Merged
merged 64 commits into from
Nov 8, 2023
Merged

Conversation

dominicduffin1
Copy link
Contributor

@dominicduffin1 dominicduffin1 commented Sep 3, 2023

PR Checklist

Overview

I've added functionality to print to the terminal help documentation based on the existing docs when the --help or -h terminal flags are used.

This will run in place of the functionality.

I've marked this as a draft PR as I have a few questions so it is not yet complete, maybe you can assist @JoshuaKGoldberg :

  • What kind of test coverage would you be looking for for this functionality?
  • What is the best approach to fetch the version number?
  • I'm not clear what is meant by "running parseargs" to check for missing options (from the issue).

Beyond that, is what I've included and how I've formatted the printout what you were expecting?

@codecov
Copy link

codecov bot commented Sep 3, 2023

Codecov Report

Merging #775 (9a1d298) into main (8918987) will increase coverage by 18.94%.
Report is 1 commits behind head on main.
The diff coverage is 99.39%.

@@             Coverage Diff             @@
##             main     #775       +/-   ##
===========================================
+ Coverage   75.16%   94.10%   +18.94%     
===========================================
  Files          88       95        +7     
  Lines        4852     5429      +577     
  Branches      196      431      +235     
===========================================
+ Hits         3647     5109     +1462     
+ Misses       1200      319      -881     
+ Partials        5        1        -4     
Flag Coverage Δ
create 70.75% <73.09%> (?)
initialize 40.90% <73.09%> (+2.56%) ⬆️
migrate 69.72% <73.09%> (-0.04%) ⬇️
unit 71.46% <99.19%> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Δ
src/bin/help.ts 100.00% <100.00%> (ø)
src/bin/packageJson.ts 100.00% <100.00%> (ø)
src/shared/options/args.ts 100.00% <100.00%> (ø)
src/shared/readFileSafe.ts 100.00% <100.00%> (+33.33%) ⬆️
src/shared/readFileSafeAsJson.ts 100.00% <100.00%> (ø)
src/bin/index.ts 96.93% <89.28%> (+22.54%) ⬆️

... and 52 files with indirect coverage changes

📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today!

Copy link
Owner

@JoshuaKGoldberg JoshuaKGoldberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like a solid start! Left some comments around refactors, but I'm very into the general visuals you're going with. 🚀

@JoshuaKGoldberg JoshuaKGoldberg added the status: waiting for author Needs an action taken by the original poster label Sep 3, 2023
@dominicduffin1
Copy link
Contributor Author

@JoshuaKGoldberg I just wanted to give you a progress update:

  • I've refactored the help print logic to use functions and merged the source data into the objects in src/shared/options/args.ts.
  • I've gone with the option of always logging the version number and deduplicated the package name
  • To get the version from the package.json I couldn't get the safer looking method of using URL to work, I've done something that seems to work in development but I'm not confident about it - will keep on looking at this.
  • There are some lint issues with any types which I need to resolve.

@dominicduffin1 dominicduffin1 marked this pull request as ready for review September 17, 2023 18:36
@dominicduffin1
Copy link
Contributor Author

Hi @JoshuaKGoldberg! I think I've covered everything that came up in this conversation, so I've marked the PR as ready for review. I am of course willing to work on any additional feedback!

I've been getting an error on one of the e2e tests, pnpm run test:migrate, both on this branch and on main. I'm not sure if I'm running the test wrong or if there's an issue?

Oh no! Running the migrate script modified some files:
 - .github/workflows/build.yml
 - .github/workflows/lint-markdown.yml
 - .github/workflows/lint-package-json.yml
 - .github/workflows/lint-packages.yml
 - .github/workflows/lint-spelling.yml
 - .github/workflows/post-release.yml
 - .github/workflows/prettier.yml
 - .github/workflows/tsc.yml

That likely indicates changes made to the repository without
corresponding updates to templates in src/.

@JoshuaKGoldberg
Copy link
Owner

Yeah sorry about the migrate test noise - it's not related to this PR. You were right to check on main. It's just broken for everyone. I'll fix it now. #796

@JoshuaKGoldberg JoshuaKGoldberg removed the status: waiting for author Needs an action taken by the original poster label Sep 18, 2023
Copy link
Owner

@JoshuaKGoldberg JoshuaKGoldberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wonderful 🚀! This is shaping up really nicely. Thanks for iterating on it!

I left some cleanup comments - a few are just style nitpicks, and a few are more structural. Please do let me know if you think I'm off base on any of them (or just want to chat alternatives)! ❤️

@JoshuaKGoldberg
Copy link
Owner

- [ ] Addresses an existing open issue: fixes #000

Don't forget to reference the issue 😄

@dominicduffin1
Copy link
Contributor Author

I've also excluded the help snapshot from the cspell linter as it was causing it to fail.

@github-actions github-actions bot removed the status: waiting for author Needs an action taken by the original poster label Oct 30, 2023
@JoshuaKGoldberg JoshuaKGoldberg added the status: waiting for author Needs an action taken by the original poster label Nov 2, 2023
@github-actions github-actions bot removed the status: waiting for author Needs an action taken by the original poster label Nov 7, 2023
Copy link
Owner

@JoshuaKGoldberg JoshuaKGoldberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fantastic, thanks so much! You put a lot of work into this and I really appreciate it 🙌 great!

Tracy Morgan saying 'booyah'

@JoshuaKGoldberg JoshuaKGoldberg merged commit 6c15440 into JoshuaKGoldberg:main Nov 8, 2023
@JoshuaKGoldberg
Copy link
Owner

@all-contributors please add @dominicduffin1 for code.

🤖 Beep boop! This comment was added automatically by all-contributors-auto-action.
Not all contributions can be detected from Git & GitHub alone. Please comment any missing contribution types this bot missed.
...and of course, thank you for contributing! 💙

Copy link
Contributor

@JoshuaKGoldberg

I've put up a pull request to add @dominicduffin1! 🎉

I couldn't determine any contributions to add, did you specify any contributions?
Please make sure to use valid contribution names.

Copy link

github-actions bot commented Nov 8, 2023

🎉 This is included in version v1.43.0 🎉

The release is available on:

Cheers! 📦🚀

JoshuaKGoldberg pushed a commit that referenced this pull request Nov 8, 2023
Adds @dominicduffin1 as a contributor for code.

This was requested by JoshuaKGoldberg [in this
comment](#775 (comment))

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
@dominicduffin1 dominicduffin1 deleted the add-help-cli branch November 8, 2023 17:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

🚀 Feature: Add a --help CLI option
2 participants