@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.
- package/index.cjs +1 -1
- package/index.mjs +1 -1
- 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:
|
|
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:
|
|
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
|
|
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
|
|
19
|
+
"@graffy/common": "0.17.8"
|
|
20
20
|
}
|
|
21
21
|
}
|