-
Notifications
You must be signed in to change notification settings - Fork 6
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
Windows: Incorrect paths are generated #3
Comments
Hey @redmunds I've pushed a fix for this and a new version to npm registry. Can you verify this is fixed for you? Additionally, I'm seeing that after a run, the output folder gets locked and I cannot overwrite it in subsequent runs. Since I'm running on a VM, could you confirm if this happens to you as well? Thanks! |
@jbalsas No, it's still not fixed. I left this out of the original recipe, but the first thing I do in This is the link I see in Dependencies section for "Menus": Interesting that the "Menus" link in the left sidebar does work (although it still has backslashes that will only work on Windows):
No, I'm not seeing that. I added a dependency to |
Hey @redmunds, I fixed the left backslashes and I think I finally figured out what's going on. Please, correct me if I'm mistaken. My guess is that you're running the When processing a module, we only know about its dependencies by analyzing the FileSystem = require("filesystem/FileSystem"),
QuickOpen = require("search/QuickOpen"),
Menus = require("command/Menus"),
FileUtils = require("file/FileUtils"), Since those are relative to the Afaict, there's no easy way to guess the With all these in mind, I'm not sure if it's really worth it, considering everything should be fine if you apify just your sources ;) What do you think? |
I was only trying to generate docs for src folder. As taken from one of your examples I was using |
Oh, I see... that makes sense. I think we can then just normalize all the file paths to be relative to the I'll work on that tomorrow and let you know. Thanks! |
UPDATE: I got the latest version and see this is already done. |
Yep, did that part, and was working on a |
UPDATE: I'm still seeing broken links on Dependencies, so I changed Subject back to original. |
On Windows, in the Dependencies section of the brackets.js file, if I click on “Menus”, the link is to:
but the file is actually located at:
Actually, the link is:
The backslash () path separator will only work on a Windows system, so that should be a forward slash. Also, the
/src
folder is missing.Seems like link should be one of these:
Interesting that in the left sidebar, there is another link to same module that is correct.
The text was updated successfully, but these errors were encountered: