@tscircuit/cli 0.1.782 → 0.1.783

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/main.js +2 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -173336,7 +173336,8 @@ async function buildKicadPcm({
173336
173336
  });
173337
173337
  }
173338
173338
  const pcmOutputDir = path43.join(distDir, "pcm");
173339
- const baseUrl = `https://${author}--${packageName}.tscircuit.app`;
173339
+ const envDeploymentUrl = process.env.TSCIRCUIT_DEPLOYMENT_URL?.replace(/\/+$/, "");
173340
+ const baseUrl = envDeploymentUrl ?? `https://${author}--${packageName}.tscircuit.app`;
173340
173341
  console.log("Generating PCM assets...");
173341
173342
  await generatePcmAssets({
173342
173343
  packageName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.782",
3
+ "version": "0.1.783",
4
4
  "main": "dist/main.js",
5
5
  "devDependencies": {
6
6
  "@babel/standalone": "^7.26.9",