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

Add src and out #11

Merged
merged 5 commits into from
May 9, 2019
Merged

Add src and out #11

merged 5 commits into from
May 9, 2019

Conversation

jonkwheeler
Copy link

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.

tscpath-logging 2019-05-08 12_33_11

Hoping to get this merged asap. Thanks @joonhocho !

Treat

Copy link

@vladjerca vladjerca left a 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

@jonkwheeler
Copy link
Author

Yeah, would be a bit cleaner

@jonkwheeler
Copy link
Author

Donzo 🧙‍♂️

Copy link

@vladjerca vladjerca left a comment

Choose a reason for hiding this comment

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

🖖

@joonhocho joonhocho merged commit 2fe3af4 into joonhocho:master May 9, 2019
@joonhocho
Copy link
Owner

joonhocho commented May 9, 2019

Sorry, but I've reverted these changes.
I am not sure if you have tested the code on many projects with different directory structures, but last time I tried to use paths from tsconfig, it did not work for some project settings.
As far as I remember, sometimes the output directory did not match how source directory is structured.

@jonkwheeler
Copy link
Author

Yeah, I tested it. I showed it working in the gif attached to the first comment on this PR.

What are you running?

@joonhocho
Copy link
Owner

@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.

@jonkwheeler
Copy link
Author

The current logic requires you supply a tsconfig. From that it first checks to see if you have a --src and --out, and if so, uses them, otherwise it'll use the rootDir and outDir specified in the tsconfig. If neither are provided, it'll error out.

@jplew
Copy link

jplew commented May 9, 2019

@jonkwheeler I tested your branch and it works for me, logging changes are nice too.

To be clear, is the --src flag mandatory? When I omit that flag I get a '--src must be specified') error, even if I specify a rootDir. Are you making an attempt to infer the src directory based on rootDir?

@jonkwheeler
Copy link
Author

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 tsconfig.compilerOptions.rootDir, and not `tsconfig.rootDir, (just double checking 🤠).

@jplew
Copy link

jplew commented May 9, 2019

don't have time to look at your code right now, but I'm trying this: tscpaths -p src/tsconfig.json. .src/tsconfig.json is extending my base ./tsconfig.json. Not sure if that has anything to do with it.

@jonkwheeler
Copy link
Author

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 rootDir and ourDir in there. Was annoying to me too.

@jonkwheeler
Copy link
Author

wonder if we detect the extend key, and then go to that file instead... 😑

@vladjerca
Copy link

vladjerca commented May 9, 2019

@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...

@jonkwheeler
Copy link
Author

Can we reopen this?

@jonkwheeler
Copy link
Author

I fixed this all in #12

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.

4 participants