From dd5dd49efbf20af15547dc36e57ba9afbc2d8943 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 5 Sep 2026 15:33:34 -0400 Subject: [PATCH] feat: add Cloudsmith to special supporters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds Cloudsmith to the sponsors contribkit configuration with its URL, logo, and inline SVG. Updates regression tests to include Cloudsmith’s SVG dimensions to guard against rendering/parsing regressions. --- configs/sponsors/contribkit.config.ts | 14 ++++++++++++++ tests/regression.test.ts | 6 ++++++ 2 files changed, 20 insertions(+) diff --git a/configs/sponsors/contribkit.config.ts b/configs/sponsors/contribkit.config.ts index 49db84a3..f83cf31f 100644 --- a/configs/sponsors/contribkit.config.ts +++ b/configs/sponsors/contribkit.config.ts @@ -126,6 +126,20 @@ const specialSupporters = [ /> `, }, + { + name: 'Cloudsmith', + url: 'https://cloudsmith.com/', + logoUrl: 'https://assets.cloudsmith.media/icon/favicon.f6cc10f69392.svg', + svgContent: ` + + + `, + }, ]; diff --git a/tests/regression.test.ts b/tests/regression.test.ts index 16d0adac..82ce91e1 100644 --- a/tests/regression.test.ts +++ b/tests/regression.test.ts @@ -93,6 +93,12 @@ describe('Regression Tests', () => { expectedWidth: 248, expectedHeight: 248, }, + { + name: 'Cloudsmith', + svg: '', + expectedWidth: 33, + expectedHeight: 32, + }, ]; testCases.forEach(testCase => {