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
Greetings,
I've faced a problem while performing a nuxt generation. I've fixed it for my case, but I felt like I should report this.
cwd is... C:/Documents/ExampleFolder/... p is... C:\Documents\ExampleFolder...
I had to add this line of command to make it work. cwd = cwd.toString().replace(/\/gi,'/');
You might wanna check if cwd contains "\" character, or you will most probably provide a better solution.
The text was updated successfully, but these errors were encountered:
related to #155. All paths fed into globby should indeed have their directory separators set to UNIX / via .replace(/\\/g, '/')
globby
/
.replace(/\\/g, '/')
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Greetings,
I've faced a problem while performing a nuxt generation. I've fixed it for my case, but I felt like I should report this.
cwd is... C:/Documents/ExampleFolder/...
p is... C:\Documents\ExampleFolder...
I had to add this line of command to make it work.
cwd = cwd.toString().replace(/\/gi,'/');
You might wanna check if cwd contains "\" character, or you will most probably provide a better solution.
The text was updated successfully, but these errors were encountered: