date-holidays-parser
Advanced tools
Comparing version 3.4.5 to 3.4.6
# Changelog | ||
## [3.4.6](https://github.com/commenthol/date-holidays-parser/compare/v3.4.5...3.4.6) (2024-12-12) | ||
- chore: reliably run postbuild script [5d2ae8d](https://github.com/commenthol/date-holidays-parser/commit/5d2ae8d62dfd3421dfa7615a36761fcff3e5b826) | ||
- fix(#62): es2015 issue remove optional chaining operator [126f2ff](https://github.com/commenthol/date-holidays-parser/commit/126f2ffe354f52dc85bb3d3e9079bc19f5f022b2) | ||
## [3.4.5](https://github.com/commenthol/date-holidays-parser/compare/v3.4.4...3.4.5) (2024-11-26) | ||
@@ -4,0 +9,0 @@ |
{ | ||
"name": "date-holidays-parser", | ||
"version": "3.4.5", | ||
"version": "3.4.6", | ||
"description": "parser for worldwide holidays", | ||
@@ -77,3 +77,3 @@ "keywords": [ | ||
"scripts": { | ||
"all": "npm-run-all clean lint build test", | ||
"all": "npm-run-all clean lint build postbuild test", | ||
"build": "rollup -c && cp scripts/rollup-fix/* lib", | ||
@@ -80,0 +80,0 @@ "postbuild": "node scripts/postbuild.cjs", |
@@ -388,3 +388,3 @@ /** | ||
const _rule = this.holidays[rule] | ||
if (!_rule?.fn?.inYear) { | ||
if (!_rule || !_rule.fn || !_rule.fn.inYear) { | ||
return [] | ||
@@ -391,0 +391,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
234661