@visulima/ansi 1.0.3 → 1.0.4
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 +20 -0
- package/dist/image.d.cts +3 -1
- package/dist/image.d.ts +3 -1
- package/dist/link.d.cts +3 -1
- package/dist/link.d.ts +3 -1
- package/dist/strip.d.cts +3 -1
- package/dist/strip.d.ts +3 -1
- package/package.json +22 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## @visulima/ansi [1.0.4](https://github.com/visulima/visulima/compare/@visulima/ansi@1.0.3...@visulima/ansi@1.0.4) (2024-09-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* added types support for node10 ([604583f](https://github.com/visulima/visulima/commit/604583fa3c24b950fafad45d17e7a1333040fd76))
|
|
6
|
+
|
|
7
|
+
### Styles
|
|
8
|
+
|
|
9
|
+
* cs fixes ([f5c4af7](https://github.com/visulima/visulima/commit/f5c4af7cfa9fc79b6d3fa60c1e48d88bffab5a08))
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* update dev dependencies ([0738f98](https://github.com/visulima/visulima/commit/0738f9810478bb215ce4b2571dc8874c4c503089))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* **@visulima/colorize:** upgraded to 1.4.7
|
|
19
|
+
* **@visulima/path:** upgraded to 1.0.6
|
|
20
|
+
|
|
1
21
|
## @visulima/ansi [1.0.3](https://github.com/visulima/visulima/compare/@visulima/ansi@1.0.2...@visulima/ansi@1.0.3) (2024-08-30)
|
|
2
22
|
|
|
3
23
|
### Bug Fixes
|
package/dist/image.d.cts
CHANGED
package/dist/image.d.ts
CHANGED
package/dist/link.d.cts
CHANGED
package/dist/link.d.ts
CHANGED
package/dist/strip.d.cts
CHANGED
package/dist/strip.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/ansi",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "ANSI escape codes for some terminal swag.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"alternative-screen",
|
|
@@ -161,6 +161,21 @@
|
|
|
161
161
|
"module": "dist/index.mjs",
|
|
162
162
|
"browser": "./dist/index.mjs",
|
|
163
163
|
"types": "dist/index.d.ts",
|
|
164
|
+
"typesVersions": {
|
|
165
|
+
"*": {
|
|
166
|
+
"*": [
|
|
167
|
+
"./dist/alternative-screen.d.ts",
|
|
168
|
+
"./dist/clear.d.ts",
|
|
169
|
+
"./dist/cursor.d.ts",
|
|
170
|
+
"./dist/erase.d.ts",
|
|
171
|
+
"./dist/image.d.ts",
|
|
172
|
+
"./dist/index.d.ts",
|
|
173
|
+
"./dist/link.d.ts",
|
|
174
|
+
"./dist/scroll.d.ts",
|
|
175
|
+
"./dist/strip.d.ts"
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
},
|
|
164
179
|
"files": [
|
|
165
180
|
"dist",
|
|
166
181
|
"README.md",
|
|
@@ -171,14 +186,15 @@
|
|
|
171
186
|
"@anolilab/prettier-config": "^5.0.14",
|
|
172
187
|
"@anolilab/semantic-release-pnpm": "1.1.3",
|
|
173
188
|
"@anolilab/semantic-release-preset": "^9.0.0",
|
|
189
|
+
"@arethetypeswrong/cli": "^0.15.4",
|
|
174
190
|
"@babel/core": "^7.25.2",
|
|
175
191
|
"@rushstack/eslint-plugin-security": "^0.8.2",
|
|
176
192
|
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
|
|
177
|
-
"@total-typescript/ts-reset": "^0.6.
|
|
193
|
+
"@total-typescript/ts-reset": "^0.6.1",
|
|
178
194
|
"@types/node": "20.14.6",
|
|
179
|
-
"@visulima/colorize": "1.4.
|
|
180
|
-
"@visulima/packem": "^1.0.0-alpha.
|
|
181
|
-
"@visulima/path": "1.0.
|
|
195
|
+
"@visulima/colorize": "1.4.7",
|
|
196
|
+
"@visulima/packem": "^1.0.0-alpha.93",
|
|
197
|
+
"@visulima/path": "1.0.6",
|
|
182
198
|
"@vitest/coverage-v8": "^2.0.5",
|
|
183
199
|
"@vitest/ui": "^2.0.5",
|
|
184
200
|
"ansi-regex": "^6.0.1",
|
|
@@ -226,6 +242,7 @@
|
|
|
226
242
|
"build:prod": "cross-env NODE_ENV=production packem build",
|
|
227
243
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
228
244
|
"dev": "pnpm run build --watch",
|
|
245
|
+
"lint:attw": "attw --pack",
|
|
229
246
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
230
247
|
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
231
248
|
"lint:package-json": "publint --strict",
|