@visulima/colorize 1.4.13 → 1.4.15
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 +22 -0
- package/package.json +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## @visulima/colorize [1.4.15](https://github.com/visulima/visulima/compare/@visulima/colorize@1.4.14...@visulima/colorize@1.4.15) (2025-01-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/path:** upgraded to 1.3.0
|
|
7
|
+
|
|
8
|
+
## @visulima/colorize [1.4.14](https://github.com/visulima/visulima/compare/@visulima/colorize@1.4.13...@visulima/colorize@1.4.14) (2024-12-31)
|
|
9
|
+
|
|
10
|
+
### Styles
|
|
11
|
+
|
|
12
|
+
* cs fixes ([12d0b20](https://github.com/visulima/visulima/commit/12d0b20814c6b97f48dffbdfbdb9f458222dc64b))
|
|
13
|
+
|
|
14
|
+
### Miscellaneous Chores
|
|
15
|
+
|
|
16
|
+
* updated dev dependencies ([9de2eab](https://github.com/visulima/visulima/commit/9de2eab91e95c8b9289d12f863a5167218770650))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Dependencies
|
|
20
|
+
|
|
21
|
+
* **@visulima/path:** upgraded to 1.2.0
|
|
22
|
+
|
|
1
23
|
## @visulima/colorize [1.4.13](https://github.com/visulima/visulima/compare/@visulima/colorize@1.4.12...@visulima/colorize@1.4.13) (2024-12-12)
|
|
2
24
|
|
|
3
25
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/colorize",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.15",
|
|
4
4
|
"description": "Terminal and Console string styling done right.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"256",
|
|
@@ -131,6 +131,19 @@
|
|
|
131
131
|
"main": "dist/index.server.cjs",
|
|
132
132
|
"module": "dist/index.server.mjs",
|
|
133
133
|
"types": "dist/index.server.d.ts",
|
|
134
|
+
"typesVersions": {
|
|
135
|
+
">=5.0": {
|
|
136
|
+
"template": [
|
|
137
|
+
"./dist/template.d.ts"
|
|
138
|
+
],
|
|
139
|
+
"gradient": [
|
|
140
|
+
"./dist/gradient.d.ts"
|
|
141
|
+
],
|
|
142
|
+
"utils": [
|
|
143
|
+
"./dist/utils.d.ts"
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
},
|
|
134
147
|
"files": [
|
|
135
148
|
"dist/**",
|
|
136
149
|
"README.md",
|
|
@@ -143,20 +156,22 @@
|
|
|
143
156
|
"devDependencies": {
|
|
144
157
|
"@anolilab/eslint-config": "^15.0.3",
|
|
145
158
|
"@anolilab/prettier-config": "^5.0.14",
|
|
146
|
-
"@anolilab/semantic-release-pnpm": "^1.1.
|
|
147
|
-
"@anolilab/semantic-release-preset": "^9.0.
|
|
159
|
+
"@anolilab/semantic-release-pnpm": "^1.1.6",
|
|
160
|
+
"@anolilab/semantic-release-preset": "^9.0.3",
|
|
148
161
|
"@babel/core": "^7.26.0",
|
|
149
162
|
"@rushstack/eslint-plugin-security": "^0.8.3",
|
|
150
163
|
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
|
|
151
164
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
152
165
|
"@types/node": "18.19.15",
|
|
153
|
-
"@visulima/
|
|
166
|
+
"@visulima/packem": "1.9.2",
|
|
167
|
+
"@visulima/path": "1.3.0",
|
|
154
168
|
"@vitest/coverage-v8": "^2.1.8",
|
|
155
169
|
"@vitest/ui": "^2.1.8",
|
|
156
170
|
"ansi-regex": "^6.1.0",
|
|
157
171
|
"ansi-styles": "^6.2.1",
|
|
158
172
|
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
159
173
|
"cross-env": "^7.0.3",
|
|
174
|
+
"esbuild": "0.24.0",
|
|
160
175
|
"eslint": "8.57.0",
|
|
161
176
|
"eslint-plugin-deprecation": "^3.0.0",
|
|
162
177
|
"eslint-plugin-etc": "^2.0.3",
|
|
@@ -165,12 +180,10 @@
|
|
|
165
180
|
"eslint-plugin-vitest": "^0.4.1",
|
|
166
181
|
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
167
182
|
"prettier": "^3.4.2",
|
|
168
|
-
"esbuild": "0.24.0",
|
|
169
|
-
"rollup": "4.27.4",
|
|
170
183
|
"rimraf": "5.0.9",
|
|
184
|
+
"rollup": "4.27.4",
|
|
171
185
|
"secretlint": "8.2.4",
|
|
172
186
|
"semantic-release": "24.0.0",
|
|
173
|
-
"@visulima/packem": "1.9.2",
|
|
174
187
|
"typescript": "5.4.5",
|
|
175
188
|
"vitest": "^2.1.8"
|
|
176
189
|
},
|
|
@@ -198,19 +211,6 @@
|
|
|
198
211
|
"info_on_disabling_etc_no_deprecated": false
|
|
199
212
|
}
|
|
200
213
|
},
|
|
201
|
-
"typesVersions": {
|
|
202
|
-
">=5.0": {
|
|
203
|
-
"template": [
|
|
204
|
-
"./dist/template.d.ts"
|
|
205
|
-
],
|
|
206
|
-
"gradient": [
|
|
207
|
-
"./dist/gradient.d.ts"
|
|
208
|
-
],
|
|
209
|
-
"utils": [
|
|
210
|
-
"./dist/utils.d.ts"
|
|
211
|
-
]
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
214
|
"scripts": {
|
|
215
215
|
"build": "cross-env NODE_ENV=development packem build",
|
|
216
216
|
"build:prod": "cross-env NODE_ENV=production packem build",
|