-
Notifications
You must be signed in to change notification settings - Fork 45
declare Node version requirement #20
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
Comments
Hi, thanks :) I need a fresh version of Node.JS to make it easier to resolve paths for windows. I used |
Hi, @sullenor, just use |
Use path.resolve and/or path.join, you would hardly need a path.sep.
|
When you work with multiple dependencies - path to the new sources can be absolute, relative or an external module and it becomes challenging to resolve them. I found out a good way to work with them, but I need to build absolute paths for that, which are relative to the root directory. For that I use path.sep property. If you know how to solve it without |
I put it to the readme |
Hi, thanks for nice library,
I was stuck with the error below for a while before I figured out that my Node version (0.10.38) didn't have the required
path.parse
method:Error went away after upgrading to Node
0.12.7
.Perhaps you can declare this requirement a bit more explicitly in README somewhere (or guard and throw clearer error)?
Thanks again for great repo!
The text was updated successfully, but these errors were encountered: