@visulima/colorize 2.0.0-alpha.3 → 2.0.0-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,43 @@
1
+ ## @visulima/colorize [2.0.0-alpha.5](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.4...@visulima/colorize@2.0.0-alpha.5) (2026-03-06)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **colorize:** update packem to 2.0.0-alpha.54 ([61e248b](https://github.com/visulima/visulima/commit/61e248be63d5e3ad069aae06d5f0a76e5ca58600))
6
+
7
+ ### Documentation
8
+
9
+ * **object,redact,colorize,path,fs:** add comprehensive Fumadocs documentation ([19c3840](https://github.com/visulima/visulima/commit/19c384041db855e1c2de41ce2067458b39737565))
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * **colorize:** update dependencies ([9da1353](https://github.com/visulima/visulima/commit/9da1353fc7c6c61b511ceb2988f5ae2a6a598d45))
14
+ * **colorize:** update dependencies ([1d995c9](https://github.com/visulima/visulima/commit/1d995c97607a5c95ac208758e957a62180e27072))
15
+ * move top-level examples into their respective packages ([3bf7105](https://github.com/visulima/visulima/commit/3bf7105a56db6383ae65d5e28dea9a2c18af791a))
16
+ * moved examples ([bb07290](https://github.com/visulima/visulima/commit/bb07290fba65a83aaad8f0ef62d1c244d1610002))
17
+ * **terminal:** update dependencies ([a5bb91a](https://github.com/visulima/visulima/commit/a5bb91a66f2be2ade485d586156a54c347a23cc9))
18
+ * update lock file maintenance ([d83e716](https://github.com/visulima/visulima/commit/d83e71697b75d24704185b66bb521a934d2db02d))
19
+ * year update ([47f4105](https://github.com/visulima/visulima/commit/47f410596ce7190cfea36a073db32e0cec50bbcd))
20
+
21
+
22
+ ### Dependencies
23
+
24
+ * **@visulima/is-ansi-color-supported:** upgraded to 3.0.0-alpha.5
25
+
26
+ ## @visulima/colorize [2.0.0-alpha.4](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.3...@visulima/colorize@2.0.0-alpha.4) (2025-12-27)
27
+
28
+ ### Bug Fixes
29
+
30
+ * **colorize:** update package files ([84c87a3](https://github.com/visulima/visulima/commit/84c87a3383cf370c94280319ac79ac106aaca3ec))
31
+
32
+ ### Miscellaneous Chores
33
+
34
+ * fixed project.json names and schema path ([964722f](https://github.com/visulima/visulima/commit/964722f691db205c7edb9aa6db29e849a647500b))
35
+
36
+
37
+ ### Dependencies
38
+
39
+ * **@visulima/is-ansi-color-supported:** upgraded to 3.0.0-alpha.4
40
+
1
41
  ## @visulima/colorize [2.0.0-alpha.3](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.2...@visulima/colorize@2.0.0-alpha.3) (2025-12-11)
2
42
 
3
43
  ### Bug Fixes
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 visulima
3
+ Copyright (c) 2026 visulima
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * Copyright (c) 2023, webdiscus
7
7
  */
8
- import type { AnsiColors, AnsiStyles, ColorData, ColorValueHex } from "./types.d.mts";
8
+ import type { AnsiColors, AnsiStyles, ColorData, ColorValueHex } from "./types.d.ts";
9
9
  export declare const baseStyles: Required<Record<AnsiStyles, ColorData>>;
10
10
  export declare const baseColors: Required<Record<AnsiColors, ColorData>>;
11
11
  export declare const styleMethods: {
@@ -1,3 +1,3 @@
1
- import type { ColorizeType } from "./types.d.mts";
1
+ import type { ColorizeType } from "./types.d.ts";
2
2
  declare const WebColorize: new () => ColorizeType;
3
3
  export default WebColorize;
@@ -5,6 +5,6 @@
5
5
  *
6
6
  * Copyright (c) 2023, webdiscus
7
7
  */
8
- import type { ColorizeType } from "./types.d.mts";
8
+ import type { ColorizeType } from "./types.d.ts";
9
9
  declare const Colorize: new () => ColorizeType;
10
10
  export default Colorize;
@@ -1,4 +1,4 @@
1
- import type { AnsiColors, AnsiStyles } from "./types.d.mts";
1
+ import type { AnsiColors, AnsiStyles } from "./types.d.ts";
2
2
  export declare const baseStyles: Required<Record<AnsiStyles, string>>;
3
3
  export declare const baseColors: Required<Record<AnsiColors, string>>;
4
4
  export declare const styleMethods: {
@@ -1,4 +1,4 @@
1
- import type { ColorizeType, ColorValueHex } from "./types.d.mts";
1
+ import type { ColorizeType, ColorValueHex } from "./types.d.ts";
2
2
  declare const _default: ColorizeType;
3
3
  export default _default;
4
4
  export declare const ansi256: (code: number) => ColorizeType;
@@ -57,5 +57,5 @@ export declare const white: ColorizeType;
57
57
  export declare const whiteBright: ColorizeType;
58
58
  export declare const yellow: ColorizeType;
59
59
  export declare const yellowBright: ColorizeType;
60
- export { default as Colorize } from "./colorize.d.mts";
61
- export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.mts";
60
+ export { default as Colorize } from "./colorize.d.ts";
61
+ export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.ts";
@@ -1,4 +1,4 @@
1
- import WebColorize from './packem_shared/Colorize-Ca9CXTcj.mjs';
1
+ import WebColorize from './packem_shared/Colorize-Ca9CXTcj.js';
2
2
 
3
3
  const colorize = new WebColorize();
4
4
  const ansi256 = colorize.ansi256;
@@ -1,4 +1,4 @@
1
- import type { ColorizeType, ColorValueHex } from "./types.d.mts";
1
+ import type { ColorizeType, ColorValueHex } from "./types.d.ts";
2
2
  declare const _default: ColorizeType;
3
3
  export default _default;
4
4
  export declare const ansi256: (code: number) => ColorizeType;
@@ -57,5 +57,5 @@ export declare const white: ColorizeType;
57
57
  export declare const whiteBright: ColorizeType;
58
58
  export declare const yellow: ColorizeType;
59
59
  export declare const yellowBright: ColorizeType;
60
- export { default as Colorize } from "./colorize.d.mts";
61
- export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.mts";
60
+ export { default as Colorize } from "./colorize.d.ts";
61
+ export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.ts";
@@ -1,4 +1,4 @@
1
- import Colorize from './packem_shared/Colorize-BenP3bFn.mjs';
1
+ import Colorize from './packem_shared/Colorize-BenP3bFn.js';
2
2
 
3
3
  const colorize = new Colorize();
4
4
  const ansi256 = colorize.ansi256;
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * Copyright (c) 2023, webdiscus
7
7
  */
8
- import type { ColorValueHex } from "../types.d.mts";
8
+ import type { ColorValueHex } from "../types.d.ts";
9
9
  /**
10
10
  * Convert hex color string to RGB values.
11
11
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/colorize",
3
- "version": "2.0.0-alpha.3",
3
+ "version": "2.0.0-alpha.5",
4
4
  "description": "Terminal and Console string styling done right.",
5
5
  "keywords": [
6
6
  "256",
@@ -165,7 +165,7 @@
165
165
  "LICENSE.md"
166
166
  ],
167
167
  "dependencies": {
168
- "@visulima/is-ansi-color-supported": "3.0.0-alpha.3"
168
+ "@visulima/is-ansi-color-supported": "3.0.0-alpha.5"
169
169
  },
170
170
  "engines": {
171
171
  "node": ">=22.13 <=25.x"