bun-match-svg 0.0.4 → 0.0.5

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
@@ -128,7 +128,7 @@ async function toMatchMultipleSvgSnapshots(
128
128
  const diffPath = filePath.replace(".snap.svg", ".diff.png")
129
129
  await looksSame.createDiff({
130
130
  reference: Buffer.from(existingSnapshot),
131
- current: Buffer.from(received[index]),
131
+ current: Buffer.from(received[index] as any),
132
132
  diff: diffPath,
133
133
  highlightColor: "#ff00ff",
134
134
  })
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.4",
4
+ "version": "0.0.5",
5
5
  "type": "module",
6
6
  "devDependencies": {
7
7
  "@types/bun": "latest"