@visulima/colorize 2.0.0-alpha.4 → 2.0.0-alpha.6

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,46 @@
1
+ ## @visulima/colorize [2.0.0-alpha.6](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.5...@visulima/colorize@2.0.0-alpha.6) (2026-03-26)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **colorize:** use workspace:* for internal [@visulima](https://github.com/visulima) deps ([65da9d0](https://github.com/visulima/visulima/commit/65da9d038280a836a925fc264186506841b89add))
6
+ * **web:** improve build setup with incremental stats caching and prod install ([fe33e75](https://github.com/visulima/visulima/commit/fe33e75827586779b4b3a0c6d57b39f889ee6207))
7
+
8
+ ### Miscellaneous Chores
9
+
10
+ * **colorize:** migrate deps to pnpm catalogs ([72117a7](https://github.com/visulima/visulima/commit/72117a7e915e99b81517a67a61bce44bf58bc23e))
11
+ * **colorize:** update dependencies ([ec10901](https://github.com/visulima/visulima/commit/ec109011e995724aaff2276344c18619c4c96ad9))
12
+ * visulima website ([#591](https://github.com/visulima/visulima/issues/591)) ([59ab2e2](https://github.com/visulima/visulima/commit/59ab2e2befb03e51cd2088956f83d9b87de6d033))
13
+
14
+
15
+ ### Dependencies
16
+
17
+ * **@visulima/is-ansi-color-supported:** upgraded to 3.0.0-alpha.6
18
+
19
+ ## @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)
20
+
21
+ ### Bug Fixes
22
+
23
+ * **colorize:** update packem to 2.0.0-alpha.54 ([61e248b](https://github.com/visulima/visulima/commit/61e248be63d5e3ad069aae06d5f0a76e5ca58600))
24
+
25
+ ### Documentation
26
+
27
+ * **object,redact,colorize,path,fs:** add comprehensive Fumadocs documentation ([19c3840](https://github.com/visulima/visulima/commit/19c384041db855e1c2de41ce2067458b39737565))
28
+
29
+ ### Miscellaneous Chores
30
+
31
+ * **colorize:** update dependencies ([9da1353](https://github.com/visulima/visulima/commit/9da1353fc7c6c61b511ceb2988f5ae2a6a598d45))
32
+ * **colorize:** update dependencies ([1d995c9](https://github.com/visulima/visulima/commit/1d995c97607a5c95ac208758e957a62180e27072))
33
+ * move top-level examples into their respective packages ([3bf7105](https://github.com/visulima/visulima/commit/3bf7105a56db6383ae65d5e28dea9a2c18af791a))
34
+ * moved examples ([bb07290](https://github.com/visulima/visulima/commit/bb07290fba65a83aaad8f0ef62d1c244d1610002))
35
+ * **terminal:** update dependencies ([a5bb91a](https://github.com/visulima/visulima/commit/a5bb91a66f2be2ade485d586156a54c347a23cc9))
36
+ * update lock file maintenance ([d83e716](https://github.com/visulima/visulima/commit/d83e71697b75d24704185b66bb521a934d2db02d))
37
+ * year update ([47f4105](https://github.com/visulima/visulima/commit/47f410596ce7190cfea36a073db32e0cec50bbcd))
38
+
39
+
40
+ ### Dependencies
41
+
42
+ * **@visulima/is-ansi-color-supported:** upgraded to 3.0.0-alpha.5
43
+
1
44
  ## @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)
2
45
 
3
46
  ### 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.4",
3
+ "version": "2.0.0-alpha.6",
4
4
  "description": "Terminal and Console string styling done right.",
5
5
  "keywords": [
6
6
  "256",
@@ -165,8 +165,10 @@
165
165
  "LICENSE.md"
166
166
  ],
167
167
  "dependencies": {
168
- "@visulima/is-ansi-color-supported": "3.0.0-alpha.4"
168
+ "@visulima/is-ansi-color-supported": "3.0.0-alpha.6"
169
169
  },
170
+ "peerDependencies": {},
171
+ "optionalDependencies": {},
170
172
  "engines": {
171
173
  "node": ">=22.13 <=25.x"
172
174
  },