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
If you change any test files (ending with 'test.js' in Egg project), and you run:
npm run test-local-changed
You'll always be told there's no file changed.
"globby" is referring "minimatch" for the global pattern searches.
In Windows, we can use either "/" or "\" as path seperators, however Only "/" is supported. Please read here: https://github.com/isaacs/minimatch#windows
To convert the "pattern" paths by replacing "" to "/".
The text was updated successfully, but these errors were encountered:
fix: detect file changes on Windows (#234)
38f1c6c
closes #233
Successfully merging a pull request may close this issue.
Steps to Reproduce this issue:
If you change any test files (ending with 'test.js' in Egg project), and you run:
You'll always be told there's no file changed.
Reasons:
"globby" is referring "minimatch" for the global pattern searches.
In Windows, we can use either "/" or "\" as path seperators, however Only "/" is supported. Please read here: https://github.com/isaacs/minimatch#windows
Solutions:
To convert the "pattern" paths by replacing "" to "/".
The text was updated successfully, but these errors were encountered: