@tscircuit/cli 0.1.1843 → 0.1.1844

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/dist/cli/main.js CHANGED
@@ -135252,7 +135252,7 @@ var import_perfect_cli = __toESM2(require_dist2(), 1);
135252
135252
  // lib/getVersion.ts
135253
135253
  import { createRequire as createRequire2 } from "node:module";
135254
135254
  // package.json
135255
- var version = "0.1.1842";
135255
+ var version = "0.1.1843";
135256
135256
  var package_default = {
135257
135257
  name: "@tscircuit/cli",
135258
135258
  version,
@@ -152388,7 +152388,7 @@ var registerBuild = (program2) => {
152388
152388
  fileOrDir: fileOrDirForBuild
152389
152389
  });
152390
152390
  const commandPlatformConfig = (() => {
152391
- if (!resolvedOptions?.disablePcb && !resolvedOptions?.routingDisabled && !resolvedOptions?.disablePartsEngine) {
152391
+ if (!resolvedOptions?.disablePcb && !resolvedOptions?.routingDisabled && !resolvedOptions?.disablePartsEngine && !resolvedOptions?.ignorePlacementDrc) {
152392
152392
  return;
152393
152393
  }
152394
152394
  const config = {};
@@ -152401,6 +152401,9 @@ var registerBuild = (program2) => {
152401
152401
  if (resolvedOptions?.disablePartsEngine) {
152402
152402
  config.partsEngineDisabled = true;
152403
152403
  }
152404
+ if (resolvedOptions?.ignorePlacementDrc) {
152405
+ config.placementDrcChecksDisabled = true;
152406
+ }
152404
152407
  return config;
152405
152408
  })();
152406
152409
  const platformConfig = mergePlatformConfigs(projectConfig?.platformConfig, commandPlatformConfig);
package/dist/lib/index.js CHANGED
@@ -65757,7 +65757,7 @@ var getNodeHandler = (winterSpec, { port, middleware = [] }) => {
65757
65757
  }));
65758
65758
  };
65759
65759
  // package.json
65760
- var version = "0.1.1842";
65760
+ var version = "0.1.1843";
65761
65761
  var package_default = {
65762
65762
  name: "@tscircuit/cli",
65763
65763
  version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.1843",
3
+ "version": "0.1.1844",
4
4
  "main": "dist/cli/main.js",
5
5
  "exports": {
6
6
  ".": "./dist/cli/main.js",