@visulima/is-ansi-color-supported 2.0.1 → 2.0.2
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 +7 -0
- package/package.json +14 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## @visulima/is-ansi-color-supported [2.0.2](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.0.1...@visulima/is-ansi-color-supported@2.0.2) (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
|
+
|
|
1
8
|
## @visulima/is-ansi-color-supported [2.0.1](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.0.0...@visulima/is-ansi-color-supported@2.0.1) (2024-03-04)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/is-ansi-color-supported",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Detect whether a terminal or browser supports ansi colors.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -99,33 +99,38 @@
|
|
|
99
99
|
"@anolilab/eslint-config": "^15.0.3",
|
|
100
100
|
"@anolilab/prettier-config": "^5.0.14",
|
|
101
101
|
"@anolilab/semantic-release-preset": "^8.0.3",
|
|
102
|
-
"@babel/core": "^7.24.
|
|
102
|
+
"@babel/core": "^7.24.3",
|
|
103
103
|
"@rushstack/eslint-plugin-security": "^0.8.1",
|
|
104
104
|
"@secretlint/secretlint-rule-preset-recommend": "^8.1.2",
|
|
105
105
|
"@types/micromatch": "^4.0.6",
|
|
106
106
|
"@types/node": "18.18.14",
|
|
107
|
-
"@vitest/coverage-v8": "^1.
|
|
108
|
-
"@vitest/ui": "^1.
|
|
107
|
+
"@vitest/coverage-v8": "^1.4.0",
|
|
108
|
+
"@vitest/ui": "^1.4.0",
|
|
109
109
|
"cross-env": "^7.0.3",
|
|
110
110
|
"eslint": "^8.57.0",
|
|
111
111
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
112
112
|
"eslint-plugin-etc": "^2.0.3",
|
|
113
113
|
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
114
114
|
"eslint-plugin-mdx": "^3.1.5",
|
|
115
|
-
"eslint-plugin-vitest": "^0.3.
|
|
116
|
-
"eslint-plugin-vitest-globals": "^1.
|
|
115
|
+
"eslint-plugin-vitest": "^0.3.26",
|
|
116
|
+
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
117
117
|
"prettier": "^3.2.5",
|
|
118
118
|
"rimraf": "^5.0.5",
|
|
119
119
|
"secretlint": "8.1.2",
|
|
120
|
-
"semantic-release": "^23.0.
|
|
120
|
+
"semantic-release": "^23.0.5",
|
|
121
121
|
"sort-package-json": "^2.8.0",
|
|
122
122
|
"tsup": "^8.0.2",
|
|
123
|
-
"typescript": "^5.
|
|
124
|
-
"vitest": "^1.
|
|
123
|
+
"typescript": "^5.4.3",
|
|
124
|
+
"vitest": "^1.4.0"
|
|
125
125
|
},
|
|
126
126
|
"engines": {
|
|
127
127
|
"node": ">=18.* <=21.*"
|
|
128
128
|
},
|
|
129
|
+
"os": [
|
|
130
|
+
"darwin",
|
|
131
|
+
"linux",
|
|
132
|
+
"win32"
|
|
133
|
+
],
|
|
129
134
|
"publishConfig": {
|
|
130
135
|
"access": "public",
|
|
131
136
|
"provenance": true
|