bun-match-svg 0.0.5 → 0.0.6

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/index.ts +1 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -109,7 +109,7 @@ async function toMatchMultipleSvgSnapshots(
109
109
  const existingSnapshot = fs.readFileSync(filePath, "utf-8")
110
110
 
111
111
  const result = await looksSame(
112
- Buffer.from(received[index]),
112
+ Buffer.from(received[index] as any),
113
113
  Buffer.from(existingSnapshot),
114
114
  {
115
115
  strict: false,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bun-match-svg",
3
3
  "module": "index.ts",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "type": "module",
6
6
  "devDependencies": {
7
7
  "@types/bun": "latest"