@visulima/colorize 2.0.0-alpha.11 → 2.0.0-alpha.12
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 +16 -0
- package/package.json +53 -53
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## @visulima/colorize [2.0.0-alpha.12](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.11...@visulima/colorize@2.0.0-alpha.12) (2026-05-27)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **storage-client:** percent-encode user fields in defaultFingerprint ([7c78a0f](https://github.com/visulima/visulima/commit/7c78a0f9512e2a673b941d80839e9f1e86b7b5d0))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* **ci-stability:** green CI across vis, native, lint, tests, attw ([#651](https://github.com/visulima/visulima/issues/651)) ([d4eb684](https://github.com/visulima/visulima/commit/d4eb684b5f75c818c9251048c605a0ed54a268e3))
|
|
10
|
+
* **repo:** sort package.json keys across all packages ([e1fd9ab](https://github.com/visulima/visulima/commit/e1fd9ab467ef96a98c777da1572ff6a50fcf7e71))
|
|
11
|
+
* sorted package.json ([b47c545](https://github.com/visulima/visulima/commit/b47c545591600fdab17d5cd3a3fbc68b61e199da))
|
|
12
|
+
|
|
13
|
+
### Tests
|
|
14
|
+
|
|
15
|
+
* **repo:** add dist runtime + types integration tests ([32ee300](https://github.com/visulima/visulima/commit/32ee300b7184117a0ddf9f9d390f75f8932d5ed9))
|
|
16
|
+
|
|
1
17
|
## @visulima/colorize [2.0.0-alpha.11](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.10...@visulima/colorize@2.0.0-alpha.11) (2026-05-14)
|
|
2
18
|
|
|
3
19
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/colorize",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.12",
|
|
4
4
|
"description": "Terminal and Console string styling done right.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"256",
|
|
@@ -56,11 +56,6 @@
|
|
|
56
56
|
"yellow"
|
|
57
57
|
],
|
|
58
58
|
"homepage": "https://visulima.com/packages/colorize/",
|
|
59
|
-
"license": "MIT",
|
|
60
|
-
"author": {
|
|
61
|
-
"name": "Daniel Bannert",
|
|
62
|
-
"email": "d.bannert@anolilab.de"
|
|
63
|
-
},
|
|
64
59
|
"repository": {
|
|
65
60
|
"type": "git",
|
|
66
61
|
"url": "git+https://github.com/visulima/visulima.git",
|
|
@@ -76,52 +71,15 @@
|
|
|
76
71
|
"url": "https://anolilab.com/support"
|
|
77
72
|
}
|
|
78
73
|
],
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"LICENSE.md"
|
|
84
|
-
],
|
|
85
|
-
"os": [
|
|
86
|
-
"darwin",
|
|
87
|
-
"linux",
|
|
88
|
-
"win32"
|
|
89
|
-
],
|
|
90
|
-
"type": "module",
|
|
91
|
-
"sideEffects": false,
|
|
92
|
-
"main": "dist/index.server.cjs",
|
|
93
|
-
"module": "dist/index.server.mjs",
|
|
94
|
-
"types": "dist/index.server.d.ts",
|
|
95
|
-
"typesVersions": {
|
|
96
|
-
">=5.0": {
|
|
97
|
-
".": [
|
|
98
|
-
"./dist/index.server.d.ts",
|
|
99
|
-
"./dist/index.browser.d.ts"
|
|
100
|
-
],
|
|
101
|
-
"browser": [
|
|
102
|
-
"./dist/index.browser.d.ts"
|
|
103
|
-
],
|
|
104
|
-
"template": [
|
|
105
|
-
"./dist/template.d.ts"
|
|
106
|
-
],
|
|
107
|
-
"gradient": [
|
|
108
|
-
"./dist/gradient.d.ts"
|
|
109
|
-
],
|
|
110
|
-
"utils": [
|
|
111
|
-
"./dist/utils.d.ts"
|
|
112
|
-
]
|
|
113
|
-
}
|
|
74
|
+
"license": "MIT",
|
|
75
|
+
"author": {
|
|
76
|
+
"name": "Daniel Bannert",
|
|
77
|
+
"email": "d.bannert@anolilab.de"
|
|
114
78
|
},
|
|
79
|
+
"sideEffects": false,
|
|
80
|
+
"type": "module",
|
|
115
81
|
"exports": {
|
|
116
82
|
".": {
|
|
117
|
-
"edge-light": {
|
|
118
|
-
"types": "./dist/index.server.d.mts",
|
|
119
|
-
"default": "./dist/index.server.mjs"
|
|
120
|
-
},
|
|
121
|
-
"browser": {
|
|
122
|
-
"types": "./dist/index.browser.d.mts",
|
|
123
|
-
"default": "./dist/index.browser.mjs"
|
|
124
|
-
},
|
|
125
83
|
"import": {
|
|
126
84
|
"types": "./dist/index.server.d.mts",
|
|
127
85
|
"default": "./dist/index.server.mjs"
|
|
@@ -129,6 +87,14 @@
|
|
|
129
87
|
"require": {
|
|
130
88
|
"types": "./dist/index.server.d.cts",
|
|
131
89
|
"default": "./dist/index.server.cjs"
|
|
90
|
+
},
|
|
91
|
+
"edge-light": {
|
|
92
|
+
"types": "./dist/index.server.d.mts",
|
|
93
|
+
"default": "./dist/index.server.mjs"
|
|
94
|
+
},
|
|
95
|
+
"browser": {
|
|
96
|
+
"types": "./dist/index.browser.d.mts",
|
|
97
|
+
"default": "./dist/index.browser.mjs"
|
|
132
98
|
}
|
|
133
99
|
},
|
|
134
100
|
"./browser": {
|
|
@@ -169,14 +135,48 @@
|
|
|
169
135
|
},
|
|
170
136
|
"./package.json": "./package.json"
|
|
171
137
|
},
|
|
172
|
-
"
|
|
173
|
-
|
|
174
|
-
|
|
138
|
+
"main": "dist/index.server.cjs",
|
|
139
|
+
"module": "dist/index.server.mjs",
|
|
140
|
+
"types": "dist/index.server.d.ts",
|
|
141
|
+
"typesVersions": {
|
|
142
|
+
">=5.0": {
|
|
143
|
+
".": [
|
|
144
|
+
"./dist/index.server.d.ts",
|
|
145
|
+
"./dist/index.browser.d.ts"
|
|
146
|
+
],
|
|
147
|
+
"browser": [
|
|
148
|
+
"./dist/index.browser.d.ts"
|
|
149
|
+
],
|
|
150
|
+
"template": [
|
|
151
|
+
"./dist/template.d.ts"
|
|
152
|
+
],
|
|
153
|
+
"gradient": [
|
|
154
|
+
"./dist/gradient.d.ts"
|
|
155
|
+
],
|
|
156
|
+
"utils": [
|
|
157
|
+
"./dist/utils.d.ts"
|
|
158
|
+
]
|
|
159
|
+
}
|
|
175
160
|
},
|
|
161
|
+
"files": [
|
|
162
|
+
"dist/**",
|
|
163
|
+
"README.md",
|
|
164
|
+
"CHANGELOG.md",
|
|
165
|
+
"LICENSE.md"
|
|
166
|
+
],
|
|
176
167
|
"dependencies": {
|
|
177
|
-
"@visulima/is-ansi-color-supported": "3.0.0-alpha.
|
|
168
|
+
"@visulima/is-ansi-color-supported": "3.0.0-alpha.11"
|
|
178
169
|
},
|
|
179
170
|
"engines": {
|
|
180
171
|
"node": "^22.14.0 || >=24.10.0"
|
|
172
|
+
},
|
|
173
|
+
"os": [
|
|
174
|
+
"darwin",
|
|
175
|
+
"linux",
|
|
176
|
+
"win32"
|
|
177
|
+
],
|
|
178
|
+
"publishConfig": {
|
|
179
|
+
"access": "public",
|
|
180
|
+
"provenance": true
|
|
181
181
|
}
|
|
182
182
|
}
|