@cocreate/sitemap
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -0,1 +1,8 @@ | ||
## [1.2.2](https://github.com/CoCreate-app/CoCreate-sitemap/compare/v1.2.1...v1.2.2) (2024-09-01) | ||
### Bug Fixes | ||
* uncomment lastmod compare ([23c74cf](https://github.com/CoCreate-app/CoCreate-sitemap/commit/23c74cfeb20c7bb6dec07ae08a30daa2d8e0ab59)) | ||
## [1.2.1](https://github.com/CoCreate-app/CoCreate-sitemap/compare/v1.2.0...v1.2.1) (2024-09-01) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@cocreate/sitemap", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "A simple sitemap component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -49,4 +49,4 @@ /******************************************************************************** | ||
if (file.sitemap && file.sitemap.lastmod && file.modified.on) { | ||
// if (new Date(file.sitemap.lastmod) >= new Date(file.modified.on)) | ||
// return; | ||
if (new Date(file.sitemap.lastmod) >= new Date(file.modified.on)) | ||
return; | ||
} | ||
@@ -53,0 +53,0 @@ |
81633