@tscircuit/core 0.0.1087 → 0.0.1088

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/dist/index.js +6 -5
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -18199,7 +18199,7 @@ import { identity as identity5 } from "transformation-matrix";
18199
18199
  var package_default = {
18200
18200
  name: "@tscircuit/core",
18201
18201
  type: "module",
18202
- version: "0.0.1086",
18202
+ version: "0.0.1087",
18203
18203
  types: "dist/index.d.ts",
18204
18204
  main: "dist/index.js",
18205
18205
  module: "dist/index.js",
@@ -18244,7 +18244,7 @@ var package_default = {
18244
18244
  "@tscircuit/math-utils": "^0.0.29",
18245
18245
  "@tscircuit/miniflex": "^0.0.4",
18246
18246
  "@tscircuit/ngspice-spice-engine": "^0.0.8",
18247
- "@tscircuit/props": "^0.0.489",
18247
+ "@tscircuit/props": "^0.0.490",
18248
18248
  "@tscircuit/schematic-match-adapt": "^0.0.16",
18249
18249
  "@tscircuit/schematic-trace-solver": "^v0.0.45",
18250
18250
  "@tscircuit/solver-utils": "^0.0.3",
@@ -19119,12 +19119,13 @@ var Board = class extends Group6 {
19119
19119
  const { db } = this.root;
19120
19120
  const routingDisabled = this.root?.pcbRoutingDisabled || this.getInheritedProperty("routingDisabled");
19121
19121
  const pcbDisabled = this.root?.pcbDisabled;
19122
+ const drcChecksDisabled = this.root?.platform?.drcChecksDisabled ?? this.getInheritedProperty("drcChecksDisabled");
19122
19123
  const netlistDrcChecksDisabled = this.root?.platform?.netlistDrcChecksDisabled ?? this.getInheritedProperty("netlistDrcChecksDisabled");
19123
19124
  const placementDrcChecksDisabled = this.root?.platform?.placementDrcChecksDisabled ?? this.getInheritedProperty("placementDrcChecksDisabled");
19124
19125
  const routingDrcChecksDisabled = this.root?.platform?.routingDrcChecksDisabled ?? this.getInheritedProperty("routingDrcChecksDisabled");
19125
- const shouldRunNetlistChecks = !netlistDrcChecksDisabled;
19126
- const shouldRunPlacementChecks = !pcbDisabled && !placementDrcChecksDisabled;
19127
- const shouldRunRoutingChecks = !pcbDisabled && !routingDisabled && !routingDrcChecksDisabled;
19126
+ const shouldRunNetlistChecks = !drcChecksDisabled && !netlistDrcChecksDisabled;
19127
+ const shouldRunPlacementChecks = !drcChecksDisabled && !pcbDisabled && !placementDrcChecksDisabled;
19128
+ const shouldRunRoutingChecks = !drcChecksDisabled && !pcbDisabled && !routingDisabled && !routingDrcChecksDisabled;
19128
19129
  if (shouldRunRoutingChecks && this._hasIncompleteAsyncEffectsInSubtreeForPhase("PcbTraceRender"))
19129
19130
  return;
19130
19131
  const hasTracesToRoute = this._hasTracesToRoute();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.1087",
4
+ "version": "0.0.1088",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -46,7 +46,7 @@
46
46
  "@tscircuit/math-utils": "^0.0.29",
47
47
  "@tscircuit/miniflex": "^0.0.4",
48
48
  "@tscircuit/ngspice-spice-engine": "^0.0.8",
49
- "@tscircuit/props": "^0.0.489",
49
+ "@tscircuit/props": "^0.0.490",
50
50
  "@tscircuit/schematic-match-adapt": "^0.0.16",
51
51
  "@tscircuit/schematic-trace-solver": "^v0.0.45",
52
52
  "@tscircuit/solver-utils": "^0.0.3",