Merge pull request #25 from ticruz38/fix/build

fix vitepress prod build
This commit is contained in:
hodlbod
2025-02-28 14:07:32 -08:00
committed by GitHub
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -6,5 +6,6 @@ build
docs/.vitepress/dist
docs/.vitepress/cached
docs/.vitepress/cache
docs/.vitepress/temp
docs/reference
docs/**/*.html
+1
View File
@@ -5,6 +5,7 @@ import typeDocSidebar from "../reference/typedoc-sidebar.json"
export default defineConfig({
title: "Welshman",
description: "The official Welshman documentation",
ignoreDeadLinks: true,
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
+1 -1
View File
@@ -75,7 +75,7 @@ export const complement =
(...args: T) =>
!f(...args)
/** Converts a Maybe<number> to a number, defaulting to 0 */
/** Converts a `Maybe<number>` to a number, defaulting to 0 */
export const num = (x: Maybe<number>) => x || 0
/** Adds two numbers, handling undefined values */