-
Notifications
You must be signed in to change notification settings - Fork 31
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
feat: support watch rslib.config
to rebuild
#489
Conversation
✅ Deploy Preview for rslib ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
CodSpeed Performance ReportMerging #489 will degrade performances by 38.82%Comparing Summary
Benchmarks breakdown
|
@@ -0,0 +1,76 @@ | |||
import path from 'node:path'; | |||
import chokidar from 'chokidar'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lazy import
ignoreInitial: true, | ||
// If watching fails due to read permissions, the errors will be suppressed silently. | ||
ignorePermissionErrors: true, | ||
ignored: ['**/node_modules/**', '**/.git/**', '**/.DS_Store/**'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chokidar v4 does not support glob, this will not work
Summary
Related Links
closes: #138
Checklist