@createiq/htmldiff 1.0.4 → 1.0.5-beta.1
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/.claude/settings.local.json +15 -0
- package/dist/HtmlDiff.cjs +881 -46
- package/dist/HtmlDiff.cjs.map +1 -1
- package/dist/HtmlDiff.d.cts +55 -19
- package/dist/HtmlDiff.d.mts +55 -19
- package/dist/HtmlDiff.mjs +881 -46
- package/dist/HtmlDiff.mjs.map +1 -1
- package/package.json +8 -8
- package/src/HtmlDiff.ts +156 -69
- package/src/TableDiff.ts +1196 -0
- package/test/HtmlDiff.spec.ts +119 -1
- package/test/HtmlDiff.tables.spec.ts +1419 -0
- package/test/TableDiff.bench.ts +244 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(diff -u test/input1.html test/input2.html)",
|
|
5
|
+
"Bash(npm test -- test/Bug.spec.tsx)",
|
|
6
|
+
"Bash(timeout 30s npm run test:ci -- test/Bug.spec.tsx)",
|
|
7
|
+
"Bash(npm run build)",
|
|
8
|
+
"Bash(timeout 10s npm run test:ci -- test/Bug.spec.tsx)",
|
|
9
|
+
"Bash(npm run lint)",
|
|
10
|
+
"Bash(npm run test:ci)",
|
|
11
|
+
"Bash(npm run bench:ci)"
|
|
12
|
+
],
|
|
13
|
+
"deny": []
|
|
14
|
+
}
|
|
15
|
+
}
|