@alcalzone/ansi-tokenize 0.1.3 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -231,6 +231,11 @@ This automatically figures out the least amount of escape codes necessary to ach
231
231
  Placeholder for next release:
232
232
  ### __WORK IN PROGRESS__
233
233
  -->
234
+ ### 0.2.0 (2025-04-24)
235
+
236
+ - Breaking: Require Node.js 18+
237
+ - Fix: Detect emojis as being full width
238
+
234
239
  ### 0.1.3 (2023-09-07)
235
240
 
236
241
  - Fix: Support links
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alcalzone/ansi-tokenize",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "Efficiently modify strings containing ANSI escape codes",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,7 +24,7 @@
24
24
  "build"
25
25
  ],
26
26
  "engines": {
27
- "node": ">=14.13.1"
27
+ "node": ">=18"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@alcalzone/release-script": "~3.5.9",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "ansi-styles": "^6.2.1",
48
- "is-fullwidth-code-point": "^4.0.0"
48
+ "is-fullwidth-code-point": "^5.0.0"
49
49
  },
50
50
  "scripts": {
51
51
  "prepare": "tsc -p tsconfig.build.json",