-
Notifications
You must be signed in to change notification settings - Fork 49
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
Add src and out #11
Add src and out #11
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rather than checking the verbose
flag everywhere. I guess we could just create an internal util:
const log = (msg) => verbose && console.log(msg)
It would be much easier this way.
I think this is a great addition nonetheless, hope it gets merged soon xD
Yeah, would be a bit cleaner |
Donzo 🧙♂️ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🖖
Sorry, but I've reverted these changes. |
Yeah, I tested it. I showed it working in the gif attached to the first comment on this PR. What are you running? |
@jonkwheeler What I am saying is, it may work for one setting, but may not for another. It depends on how project is structured. Typescript does weird thing to determine output directory structure. I need to have some time invested if I want to have this feature merged and test more. I originally try to have this feature but gave up at the time. |
The current logic requires you supply a tsconfig. From that it first checks to see if you have a |
@jonkwheeler I tested your branch and it works for me, logging changes are nice too. To be clear, is the |
You do? That's strange. I do not. I'll have to test again, but I'm able to do it without flagging it. Make sure you have |
don't have time to look at your code right now, but I'm trying this: |
Extending doesn't work for getting the directories. You have to specify it in the exact config file you are referencing. I don't have a good reason why, it just won't grab the directories from an extended config. You can still use a second extended config file, but you have to set the |
wonder if we detect the extend key, and then go to that file instead... 😑 |
@joonhocho the changes in this PR do not affect the previous behavior of the lib, reverting the changes makes no sense 😔. @jonkwheeler I think this PR should be opened again... As for the extended configs, that could be solved by recursively loading the parent configs until the properties are found or the top node is reached... |
Can we reopen this? |
I fixed this all in #12 |
I went ahead and fixed up the directories and logging. You no longer have to provide the
--src
or--out
, and there are logs to warn you.In addition, there was too many logs, so I disabled them unless on the
--verbose
flag.Below is an example of myself compiling to show you the logs now, without
-v
.Hoping to get this merged asap. Thanks @joonhocho !
Treat