@tscircuit/capacity-autorouter 0.0.64 → 0.0.65

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/README.md +6 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -6,6 +6,12 @@ An MIT-licensed full-pipeline PCB autorouter library for node.js and TypeScript
6
6
 
7
7
  Check out this [short youtube explanation of this autorouter](https://youtu.be/MmTk0806fAo)
8
8
 
9
+ ## How to file a bug report
10
+
11
+ 1. You should have [created a bug report via the tscircuit errors tab](https://docs.tscircuit.com/contributing/report-autorouter-bugs)
12
+ 2. Run `bun run bug-report <bug-report-url>`
13
+ 3. This will download the bug report and create a debugging fixture file in the `examples/bug-reports` directory, you can then find the bug report in the server (via `bun run start`)
14
+
9
15
  ## Installation
10
16
 
11
17
  ```bash
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/capacity-autorouter",
3
3
  "main": "./dist/index.js",
4
- "version": "0.0.64",
4
+ "version": "0.0.65",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -13,7 +13,8 @@
13
13
  "format": "biome format --write .",
14
14
  "format:check": "biome format .",
15
15
  "vercel-build": "cosmos-export",
16
- "repomix:lib": "repomix --ignore 'testing/**,**/TwoRouteHighDensitySolver/**,**/RouteStitchingSolver/**,solvers/CapacitySegmentPointOptimizer/CapacitySegmentPointOptimizer.ts' lib"
16
+ "repomix:lib": "repomix --ignore 'testing/**,**/TwoRouteHighDensitySolver/**,**/RouteStitchingSolver/**,solvers/CapacitySegmentPointOptimizer/CapacitySegmentPointOptimizer.ts' lib",
17
+ "bug-report": "bun run scripts/download-bug-report.ts"
17
18
  },
18
19
  "devDependencies": {
19
20
  "@biomejs/biome": "^1.9.4",