@tscircuit/cli 0.1.2034 → 0.1.2035
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 +13 -0
- package/dist/cli/main.js +15964 -491
- package/dist/lib/index.js +6 -4
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -81,6 +81,19 @@ The `build` command also accepts the following options:
|
|
|
81
81
|
- `--ignore-placement-drc` - suppress placement DRC diagnostics
|
|
82
82
|
- `--ignore-routing-drc` - suppress routing DRC diagnostics
|
|
83
83
|
|
|
84
|
+
### Altium export
|
|
85
|
+
|
|
86
|
+
Export a TSX circuit or an existing Circuit JSON file as an Altium project:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
tsci export board.tsx --format altium
|
|
90
|
+
tsci export board.circuit.json --format altium --output board-altium.zip
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
The ZIP contains native `.PcbDoc` and `.SchDoc` files and a `.PrjPcb` project,
|
|
94
|
+
generated by `circuit-json-to-altium`. Open the `.PrjPcb` file in Altium Designer.
|
|
95
|
+
Without `--output`, the archive is saved beside the input as `<input-basename>-altium.zip`.
|
|
96
|
+
|
|
84
97
|
### KiCad PCM compatibility
|
|
85
98
|
|
|
86
99
|
`tsci build --kicad-pcm` uses the package license from `package.json` and
|