Skip to content
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

Failing percy #74

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
70f087a
chore(deps): update all major dependencies
renovate[bot] Feb 24, 2025
0f34b71
chore(tailwind): use upgrade tool
mr-wildcard Feb 19, 2025
9426943
chore(tailwind): replace @astrojs/tailwind with @tailwindcss/vite
mr-wildcard Feb 19, 2025
1920874
refactor: remove @apply
mr-wildcard Feb 19, 2025
9f04324
fix: install @tailwindcss/vite
mr-wildcard Feb 24, 2025
023bd6c
chore: npx update-browserslist-db@latest
mr-wildcard Feb 24, 2025
e19d790
refactor(tailwind): use @variant for breakpoints
mr-wildcard Feb 24, 2025
855a3fc
fix(tailwind): header border bottom
mr-wildcard Feb 24, 2025
022cb5a
fix(tailwind): custom breakpoint value in rem
mr-wildcard Feb 24, 2025
8b85781
fix(tailwind): try font format woff2 for percy rendering
mr-wildcard Feb 24, 2025
dfb31d8
Revert "fix(tailwind): try font format woff2 for percy rendering"
mr-wildcard Feb 24, 2025
5f6dca7
fix: underline offset value
mr-wildcard Feb 24, 2025
5d164df
chore(percy): try without cache
mr-wildcard Feb 24, 2025
7d6acd5
chore(tailwin): merge layer base styles
mr-wildcard Feb 24, 2025
09bc305
refactor: remove unicode-range
mr-wildcard Feb 24, 2025
c9b9a2a
refactor: move @font-face into layout
mr-wildcard Feb 24, 2025
c0ee372
Revert "refactor: move @font-face into layout"
mr-wildcard Feb 24, 2025
ae0c002
debug percy
mr-wildcard Feb 27, 2025
64bbc02
Revert "debug percy"
mr-wildcard Mar 1, 2025
bdfff53
chore: upgrade dependencies
mr-wildcard Mar 1, 2025
a4c627d
chore(percy): remove port check
mr-wildcard Mar 1, 2025
01c0ad0
chore(tailwin): add unicode-range to @font-face
mr-wildcard Mar 1, 2025
9aa47c4
fix(a-propos): font family
mr-wildcard Mar 1, 2025
d4a8d36
refactor(tailwind): inline styles
mr-wildcard Mar 1, 2025
202ce49
chore: try without font-display swap
mr-wildcard Mar 1, 2025
e58f90e
Revert "chore: try without font-display swap"
mr-wildcard Mar 1, 2025
697493e
one element
mr-wildcard Mar 2, 2025
eaf1dbd
test: no tailwind
mr-wildcard Mar 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
one element
  • Loading branch information
mr-wildcard committed Mar 2, 2025
commit 697493e06717133d2f022c76f5c5f8ee7289317b
6 changes: 5 additions & 1 deletion .percy.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ async function getWebsiteURLs() {

const sitemapXML = parser.parse(response);

return sitemapXML.urlset.url.map(({ loc }) => loc);
if (Array.isArray(sitemapXML.urlset.url)) {
return sitemapXML.urlset.url.map(({ loc }) => loc);
} else {
return [sitemapXML.urlset.url.loc];
}
}),
);

Expand Down
28 changes: 0 additions & 28 deletions src/components/@common/DiscreetDots.astro

This file was deleted.

26 changes: 0 additions & 26 deletions src/components/@common/Grid.astro

This file was deleted.

13 changes: 0 additions & 13 deletions src/components/@common/Icon.astro

This file was deleted.

10 changes: 0 additions & 10 deletions src/components/@common/IconOpenInNew.astro

This file was deleted.

40 changes: 0 additions & 40 deletions src/components/@common/Link.astro

This file was deleted.

9 changes: 0 additions & 9 deletions src/components/@common/Separator.astro

This file was deleted.

13 changes: 0 additions & 13 deletions src/components/@common/Tag.astro

This file was deleted.

121 changes: 0 additions & 121 deletions src/components/Contact.astro

This file was deleted.

40 changes: 0 additions & 40 deletions src/components/Footer/NavItem.astro

This file was deleted.

30 changes: 0 additions & 30 deletions src/components/Footer/index.astro

This file was deleted.

24 changes: 0 additions & 24 deletions src/components/Header/Logo.astro

This file was deleted.

Loading