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 setting these options:
startDay:1 noWeekends: true
Will disable monday and sunday (instead of saturday and sunday).
The text was updated successfully, but these errors were encountered:
I have the same issue. For now I "solved" it with disabler: date => date.getDay() === 6 || date.getDay() === 0, // Disable weekends
disabler: date => date.getDay() === 6 || date.getDay() === 0, // Disable weekends
Sorry, something went wrong.
Sorry for the delay, looking into this now...
Fixed weekend bug (#107) (#109)
e7abed4
* node-sass => sass (Dart sass) * Fixed bug with weekends. * Build * Updated gitignore. * Updated packages.
Fixed!
No branches or pull requests
If setting these options:
startDay:1
noWeekends: true
Will disable monday and sunday (instead of saturday and sunday).
The text was updated successfully, but these errors were encountered: