@graffy/testing 0.17.8-alpha.2 → 0.17.8

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 (3) hide show
  1. package/index.cjs +1 -1
  2. package/index.mjs +1 -1
  3. package/package.json +2 -2
package/index.cjs CHANGED
@@ -26,7 +26,7 @@ function pretty(query) {
26
26
  /\[(\s*)([\s\S]*?)\},*/g,
27
27
  (_, space, inner) => `[${space}${inner.replace(/\n\s+/g, " ")}},`
28
28
  ).replace(
29
- // biome-ignore lint/suspicious/noControlCharactersInRegex: <explanation>
29
+ // biome-ignore lint/suspicious/noControlCharactersInRegex: unicode range intentionally includes control chars to escape them
30
30
  /[^\u0020-\u007e,\u000a]/g,
31
31
  (char) => `\\u${char.charCodeAt(0).toString(16).padStart(4)}`
32
32
  );
package/index.mjs CHANGED
@@ -24,7 +24,7 @@ function pretty(query) {
24
24
  /\[(\s*)([\s\S]*?)\},*/g,
25
25
  (_, space, inner) => `[${space}${inner.replace(/\n\s+/g, " ")}},`
26
26
  ).replace(
27
- // biome-ignore lint/suspicious/noControlCharactersInRegex: <explanation>
27
+ // biome-ignore lint/suspicious/noControlCharactersInRegex: unicode range intentionally includes control chars to escape them
28
28
  /[^\u0020-\u007e,\u000a]/g,
29
29
  (char) => `\\u${char.charCodeAt(0).toString(16).padStart(4)}`
30
30
  );
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graffy/testing",
3
3
  "description": "Testing and debugging utilities for Graffy.",
4
4
  "author": "aravind (https://github.com/aravindet)",
5
- "version": "0.17.8-alpha.2",
5
+ "version": "0.17.8",
6
6
  "main": "./index.cjs",
7
7
  "exports": {
8
8
  "import": "./index.mjs",
@@ -16,6 +16,6 @@
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "dependencies": {
19
- "@graffy/common": "0.17.8-alpha.2"
19
+ "@graffy/common": "0.17.8"
20
20
  }
21
21
  }