-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
refactor(cli): some general refactoring in swc_cli #5003
base: main
Are you sure you want to change the base?
Conversation
Brian Myers seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
I'd like to request to take out these changes, for 2 reasons:
|
Fair enough. Change in behavior removed. Now the old behavior is retained, i.e. user receives an error if they pass a directory plus 1 or more other paths. |
Description:
Hi all. First time contributor here.
I saw @kwonoj 's comment in this issue and became interested in the port of
swc_cli
to rust. I had a couple of free hours today and so just went through trying to familiarize myself with the existing code a bit and perform a few changes.I mostly focused on the
compile
command.I noticed a couple of small improvement opportunities if you guys like them:
PathBuf
s)&Option<PathBuf>
in function signatures to what I think is the slightly more idiomaticOption<&Path>
.At some point, I'd like to try my hand at adding some new code fill in more of the missing pieces of the cli, but, today, I just started with some general tweaks to what's already there.
Looking forward to seeing if you're interested in any of these changes.
Best,
Brian
Related issue (if exists):
#1589