@visulima/colorize 1.3.0 → 1.3.1
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 +13 -0
- package/package.json +16 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## @visulima/colorize [1.3.1](https://github.com/visulima/visulima/compare/@visulima/colorize@1.3.0...@visulima/colorize@1.3.1) (2024-03-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added missing os key to package.json ([4ad1268](https://github.com/visulima/visulima/commit/4ad1268ed12cbdcf60aeb46d4c052ed1696bc150))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@visulima/is-ansi-color-supported:** upgraded to 2.0.2
|
|
13
|
+
|
|
1
14
|
## @visulima/colorize [1.3.0](https://github.com/visulima/visulima/compare/@visulima/colorize@1.2.2...@visulima/colorize@1.3.0) (2024-03-04)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/colorize",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Terminal and Console string styling done right.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"256",
|
|
@@ -144,19 +144,19 @@
|
|
|
144
144
|
"test:watch": "vitest"
|
|
145
145
|
},
|
|
146
146
|
"dependencies": {
|
|
147
|
-
"@visulima/is-ansi-color-supported": "2.0.
|
|
147
|
+
"@visulima/is-ansi-color-supported": "2.0.2"
|
|
148
148
|
},
|
|
149
149
|
"devDependencies": {
|
|
150
150
|
"@anolilab/eslint-config": "^15.0.3",
|
|
151
151
|
"@anolilab/prettier-config": "^5.0.14",
|
|
152
152
|
"@anolilab/semantic-release-preset": "^8.0.3",
|
|
153
|
-
"@babel/core": "^7.24.
|
|
153
|
+
"@babel/core": "^7.24.3",
|
|
154
154
|
"@rushstack/eslint-plugin-security": "^0.8.1",
|
|
155
155
|
"@secretlint/secretlint-rule-preset-recommend": "^8.1.2",
|
|
156
156
|
"@total-typescript/ts-reset": "^0.5.1",
|
|
157
157
|
"@types/node": "18.18.14",
|
|
158
|
-
"@vitest/coverage-v8": "^1.
|
|
159
|
-
"@vitest/ui": "^1.
|
|
158
|
+
"@vitest/coverage-v8": "^1.4.0",
|
|
159
|
+
"@vitest/ui": "^1.4.0",
|
|
160
160
|
"ansi-regex": "^6.0.1",
|
|
161
161
|
"ansi-styles": "^6.2.1",
|
|
162
162
|
"cross-env": "^7.0.3",
|
|
@@ -165,21 +165,26 @@
|
|
|
165
165
|
"eslint-plugin-etc": "^2.0.3",
|
|
166
166
|
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
167
167
|
"eslint-plugin-mdx": "^3.1.5",
|
|
168
|
-
"eslint-plugin-vitest": "^0.3.
|
|
169
|
-
"eslint-plugin-vitest-globals": "^1.
|
|
168
|
+
"eslint-plugin-vitest": "^0.3.26",
|
|
169
|
+
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
170
170
|
"prettier": "^3.2.5",
|
|
171
171
|
"rimraf": "^5.0.5",
|
|
172
172
|
"secretlint": "8.1.2",
|
|
173
|
-
"semantic-release": "^23.0.
|
|
173
|
+
"semantic-release": "^23.0.5",
|
|
174
174
|
"sort-package-json": "^2.8.0",
|
|
175
175
|
"tsup": "^8.0.2",
|
|
176
|
-
"type-fest": "^4.
|
|
177
|
-
"typescript": "^5.
|
|
178
|
-
"vitest": "^1.
|
|
176
|
+
"type-fest": "^4.13.1",
|
|
177
|
+
"typescript": "^5.4.3",
|
|
178
|
+
"vitest": "^1.4.0"
|
|
179
179
|
},
|
|
180
180
|
"engines": {
|
|
181
181
|
"node": ">=18.* <=21.*"
|
|
182
182
|
},
|
|
183
|
+
"os": [
|
|
184
|
+
"darwin",
|
|
185
|
+
"linux",
|
|
186
|
+
"win32"
|
|
187
|
+
],
|
|
183
188
|
"publishConfig": {
|
|
184
189
|
"access": "public",
|
|
185
190
|
"provenance": true
|