Skip to content

Commit

Permalink
chore: rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
aradzie committed Nov 29, 2024
1 parent a5ae1c6 commit 4b4b7bb
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/keybr-color/lib/color-hsl.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { clamp, isNumber, isObjectLike } from "@keybr/lang";
import { Color } from "./color.ts";
import { hslToHsv, hslToRgb } from "./convert.ts";
import { hslToHsv, hslToRgb } from "./convert-rgb.ts";
import { type Hsl } from "./types.ts";
import { round } from "./util.ts";

Expand Down
2 changes: 1 addition & 1 deletion packages/keybr-color/lib/color-hsv.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { clamp, isNumber, isObjectLike } from "@keybr/lang";
import { Color } from "./color.ts";
import { hslToRgb, hsvToHsl } from "./convert.ts";
import { hslToRgb, hsvToHsl } from "./convert-rgb.ts";
import { type Hsv } from "./types.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/keybr-color/lib/color-hwb.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { clamp, isNumber, isObjectLike } from "@keybr/lang";
import { Color } from "./color.ts";
import { hwbToHsl, hwbToHsv, hwbToRgb } from "./convert.ts";
import { hwbToHsl, hwbToHsv, hwbToRgb } from "./convert-rgb.ts";
import { type Hwb } from "./types.ts";
import { round } from "./util.ts";

Expand Down
2 changes: 1 addition & 1 deletion packages/keybr-color/lib/color-oklab.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { clamp, isNumber, isObjectLike } from "@keybr/lang";
import { Color } from "./color.ts";
import { hslToHsv, rgbToHsl } from "./convert.ts";
import { hslToHsv, rgbToHsl } from "./convert-rgb.ts";
import { type Oklab } from "./types.ts";
import { round } from "./util.ts";

Expand Down
2 changes: 1 addition & 1 deletion packages/keybr-color/lib/color-oklch.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { clamp, isNumber, isObjectLike } from "@keybr/lang";
import { Color } from "./color.ts";
import { hslToHsv, rgbToHsl } from "./convert.ts";
import { hslToHsv, rgbToHsl } from "./convert-rgb.ts";
import { type Oklch } from "./types.ts";
import { round } from "./util.ts";

Expand Down
2 changes: 1 addition & 1 deletion packages/keybr-color/lib/color-rgb.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { clamp, isNumber, isObjectLike } from "@keybr/lang";
import { Color } from "./color.ts";
import { hslToHsv, rgbToHsl } from "./convert.ts";
import { hslToHsv, rgbToHsl } from "./convert-rgb.ts";
import { type Rgb } from "./types.ts";
import { round } from "./util.ts";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { HslColor } from "./color-hsl.ts";
import { HsvColor } from "./color-hsv.ts";
import { HwbColor } from "./color-hwb.ts";
import { RgbColor } from "./color-rgb.ts";
import { hslToHsv, hslToHwb, hslToRgb, hsvToHsl, hwbToHsl, hwbToRgb, rgbToHsl, rgbToHwb } from "./convert.ts";
import { hslToHsv, hslToHwb, hslToRgb, hsvToHsl, hwbToHsl, hwbToRgb, rgbToHsl, rgbToHwb } from "./convert-rgb.ts";
import { parseColor } from "./parse.ts";

test("roundtrip", () => {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/keybr-color/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export * from "./color-hwb.ts";
export * from "./color-oklab.ts";
export * from "./color-oklch.ts";
export * from "./color-rgb.ts";
export * from "./convert.ts";
export * from "./convert-rgb.ts";
export * from "./mix.ts";
export * from "./parse.ts";
export * from "./types.ts";

0 comments on commit 4b4b7bb

Please sign in to comment.