Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
KishiTheMechanic committed Oct 28, 2024
1 parent c8a71aa commit 00fb197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elsoul/fresh-sitemap",
"version": "0.7.7",
"version": "0.7.8",
"description": "Lightweight global state management library for Fresh framework using Preact signals.",
"runtimes": ["deno", "browser"],
"exports": "./mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async function generateSitemap(
// Ignore paths with `_` or `()` segments
if (
segments.some((segment) =>
segment.startsWith('_') || segment.match(/\(.*\)/)
segment.startsWith('_') || segment.includes('(')
)
) return

Expand Down

0 comments on commit 00fb197

Please sign in to comment.