From f72ff137cc81b7d610f768c6af63aa2989edeeb9 Mon Sep 17 00:00:00 2001 From: Matt Matijevich Date: Fri, 10 Jul 2026 20:26:57 -0500 Subject: [PATCH] Exclude dialyzer PLT cache from the published Hex package priv/plts/* was being bundled by default, adding ~7MB of build artifacts to every published tarball. --- mix.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/mix.exs b/mix.exs index 6fd42ce..4263b70 100644 --- a/mix.exs +++ b/mix.exs @@ -38,6 +38,7 @@ defmodule Quickbase.MixProject do defp package do [ + files: ~w(lib .formatter.exs mix.exs README.md LICENSE), licenses: ["MIT"], links: %{"GitHub" => @source_url, "Quickbase API" => "https://developer.quickbase.com/"} ]