From 37320215b9ebb3525214c0da9fbefb40044cf9ea Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 1 Jul 2026 16:18:16 -0700 Subject: [PATCH] Reformat with the latest Prettier --- lib/src/value/color.ts | 5 +---- tool/prepare-optional-release.ts | 6 +----- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/lib/src/value/color.ts b/lib/src/value/color.ts index c9dc79fa..2b0d53ca 100644 --- a/lib/src/value/color.ts +++ b/lib/src/value/color.ts @@ -87,10 +87,7 @@ type PolarColorSpace = ColorSpaceHsl | ColorSpaceHwb | ColorSpaceLch; * colors. */ type HueInterpolationMethod = - | 'decreasing' - | 'increasing' - | 'longer' - | 'shorter'; + 'decreasing' | 'increasing' | 'longer' | 'shorter'; /** * Methods by which colors in bounded spaces can be mapped to within their diff --git a/tool/prepare-optional-release.ts b/tool/prepare-optional-release.ts index 9b7d695e..299568e1 100644 --- a/tool/prepare-optional-release.ts +++ b/tool/prepare-optional-release.ts @@ -8,11 +8,7 @@ import * as pkg from '../package.json'; import * as utils from './utils'; export type DartPlatform = - | 'android' - | 'linux' - | 'linux-musl' - | 'macos' - | 'windows'; + 'android' | 'linux' | 'linux-musl' | 'macos' | 'windows'; export type DartArch = 'x64' | 'arm' | 'arm64' | 'riscv64'; const argv = yargs(process.argv.slice(2))