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
Passing along files: src/styles/main src/styles/modules
src/styles/main
src/styles/modules
yields the following (incorrect) basePath: /absolute/path/src/styles/m
/absolute/path/src/styles/m
Suffice to say this is not correct and breaks the execution right away on fs.statSync(options.basePath)
fs.statSync(options.basePath)
The text was updated successfully, but these errors were encountered:
Fixes jacobrask#124: Requires path separator in basepath
3af86ac
By making sure the common path ends with a path separator, we know we end up with an actual valid base path.
Fixes jacobrask#124 for Node versions < 0.10
d8ae60b
Undo previous commit: Fixes jacobrask#124 for Node versions < 0.10
0cd73e4
No branches or pull requests
Passing along files:
src/styles/main
src/styles/modules
yields the following (incorrect) basePath:
/absolute/path/src/styles/m
Suffice to say this is not correct and breaks the execution right away on
fs.statSync(options.basePath)
The text was updated successfully, but these errors were encountered: