biscuitboard 1.0.7 → 1.0.8
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/README.md +4 -2
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -20,11 +20,13 @@ export default () => (
|
|
|
20
20
|
Generate a Gerber ZIP without the front or back solder-mask layers with:
|
|
21
21
|
|
|
22
22
|
```sh
|
|
23
|
-
bun run export:gerbers
|
|
23
|
+
bun run export:gerbers examples/breadboard-clad.tsx
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
The archive defaults to `dist/gerbers/<board-name>.zip`. Pass a second argument
|
|
27
|
-
to choose another ZIP path.
|
|
27
|
+
to choose another ZIP path. As a fabrication postprocessing step, every board
|
|
28
|
+
receives full top and bottom copper pours and the front and back solder-mask
|
|
29
|
+
layers are removed. The source TSX is not modified.
|
|
28
30
|
|
|
29
31
|
`BiscuitBoard` owns the fixed 75 mm x 55 mm outline, mounting holes, and
|
|
30
32
|
assignable prefabricated vias. Copper pours are intentionally disabled. Its
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "biscuitboard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Prefabricated copper-clad board wrappers and fixed-via autorouting for tscircuit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"build:example": "tsci build examples/stm32c071.tsx --disable-parts-engine --svgs",
|
|
43
43
|
"build:xiao-stm32-usb": "tsci build examples/xiao-stm32-usb.tsx --disable-parts-engine --svgs",
|
|
44
44
|
"export:lightburn": "bun run scripts/export-lightburn.tsx",
|
|
45
|
-
"export:gerbers
|
|
45
|
+
"export:gerbers": "bun run scripts/export-gerbers.ts",
|
|
46
46
|
"export:stencil-step": "bun run scripts/export-stencil-step.ts",
|
|
47
47
|
"generate:lens-calibration": "bun run scripts/generate-lens-calibration.ts",
|
|
48
48
|
"setup:test-deps": "bun run --cwd node_modules/sharp install",
|
|
@@ -92,11 +92,12 @@
|
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@biomejs/biome": "^2.3.4",
|
|
95
|
+
"@tscircuit/biscuit-board-autorouter": "github:tscircuit/biscuit-board-autorouter#a704ab5d6f9693924fe716710c57a7787fe943f4",
|
|
95
96
|
"@tscircuit/checks": "0.0.151",
|
|
96
97
|
"@tscircuit/common": "0.0.56",
|
|
98
|
+
"@tscircuit/copper-pour-solver": "0.0.47",
|
|
97
99
|
"@types/bun": "^1.3.14",
|
|
98
100
|
"@types/react": "19.2.18",
|
|
99
|
-
"@tscircuit/biscuit-board-autorouter": "github:tscircuit/biscuit-board-autorouter#a704ab5d6f9693924fe716710c57a7787fe943f4",
|
|
100
101
|
"bun-match-svg": "0.0.15",
|
|
101
102
|
"circuit-json": "0.0.464",
|
|
102
103
|
"circuit-json-to-lbrn": "0.0.88",
|