circuit-to-canvas 0.0.15 → 0.0.16

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.
@@ -29,3 +29,11 @@ jobs:
29
29
 
30
30
  - name: Run tests
31
31
  run: bun test
32
+
33
+ - name: Upload snapshot artifacts
34
+ if: always()
35
+ uses: actions/upload-artifact@v4
36
+ with:
37
+ name: test-snapshots
38
+ path: tests/**/__snapshots__/*.diff.png
39
+ if-no-files-found: ignore
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "circuit-to-canvas",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.15",
4
+ "version": "0.0.16",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsup-node ./lib/index.ts --format esm --dts",