circuit-to-canvas 0.0.15 → 0.0.17

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/README.md CHANGED
@@ -56,7 +56,7 @@ This checklist tracks PCB drawing features from [circuit-to-svg](https://github.
56
56
 
57
57
  ### Copper Text
58
58
 
59
- - [ ] `pcb_copper_text` - Text rendered on copper layers (supports knockout mode, mirroring)
59
+ - [x] `pcb_copper_text` - Text rendered on copper layers (supports knockout mode, mirroring)
60
60
 
61
61
  ### Error Visualization
62
62
 
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.17",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsup-node ./lib/index.ts --format esm --dts",