From 655af47a55864a5302f50ef56f9476e81fcfa21d Mon Sep 17 00:00:00 2001 From: Lou Cyx Date: Fri, 17 Apr 2026 06:36:49 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20(shared)=20fix=20build.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 3 +++ @coven/math/numberFunction.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5518b73..6f3353d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,6 +27,9 @@ jobs: - name: Lint docs run: deno task lint-docs + - name: Check publish + run: deno publish --dry-run + - name: Format run: deno task format-check diff --git a/@coven/math/numberFunction.ts b/@coven/math/numberFunction.ts index 5196703..cd38437 100644 --- a/@coven/math/numberFunction.ts +++ b/@coven/math/numberFunction.ts @@ -1,7 +1,7 @@ import { memoFunction } from "@coven/memo"; import { isFunction } from "@coven/predicates"; import type { Unary } from "@coven/types"; -import { always } from "../utils/always.ts"; +import { always } from "@coven/utils"; import { isPrecise } from "./isPrecise.ts"; import { numberToPrecise } from "./numberToPrecise.ts"; import type { Precise } from "./precise.ts";