We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in cli.js:
files = files.map(function(filename){ return path.join(process.cwd(), filename); });
This will prepend the cwd to the filename even when the filename is actually a full path. using path.resolve should fix this: (http://nodejs.org/docs/v0.5.4/api/path.html#path.resolve)
files = files.map(function(filename){ return path.resolve(process.cwd(), filename); });
path.join("/a/b/c", "/d/e") '/a/b/c/d/e' path.resolve("/a/b/c", "/d/e") '/d/e'
The text was updated successfully, but these errors were encountered:
Change path.join to path.resolve so that '..', '/', '~' can be used a…
c2f290c
…s the filename successfully, fixes CSSLint#166
5868e55
No branches or pull requests
in cli.js:
This will prepend the cwd to the filename even when the filename is actually a full path. using path.resolve should fix this:
(http://nodejs.org/docs/v0.5.4/api/path.html#path.resolve)
The text was updated successfully, but these errors were encountered: