@tscircuit/cli 0.1.156 → 0.1.158
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/main.js +7 -27
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -240539,7 +240539,7 @@ var getGlobalDepsInstallCommand = (packageManager, deps) => {
|
|
|
240539
240539
|
import { execSync as execSync2 } from "node:child_process";
|
|
240540
240540
|
var import_semver2 = __toESM2(require_semver2(), 1);
|
|
240541
240541
|
// package.json
|
|
240542
|
-
var version = "0.1.
|
|
240542
|
+
var version = "0.1.157";
|
|
240543
240543
|
var package_default = {
|
|
240544
240544
|
name: "@tscircuit/cli",
|
|
240545
240545
|
version,
|
|
@@ -281059,7 +281059,7 @@ async function getBuildEntrypoints({
|
|
|
281059
281059
|
const resolved = path24.resolve(resolvedRoot, fileOrDir);
|
|
281060
281060
|
if (fs24.existsSync(resolved) && fs24.statSync(resolved).isDirectory()) {
|
|
281061
281061
|
const projectDir2 = resolved;
|
|
281062
|
-
const files2 = globbySync(["**/*.
|
|
281062
|
+
const files2 = globbySync(["**/*.board.tsx", "**/*.circuit.tsx"], {
|
|
281063
281063
|
cwd: projectDir2,
|
|
281064
281064
|
ignore: DEFAULT_IGNORED_PATTERNS
|
|
281065
281065
|
});
|
|
@@ -281071,32 +281071,20 @@ async function getBuildEntrypoints({
|
|
|
281071
281071
|
return { projectDir: path24.dirname(resolved), circuitFiles: [resolved] };
|
|
281072
281072
|
}
|
|
281073
281073
|
const projectDir = resolvedRoot;
|
|
281074
|
-
const files = globbySync(["**/*.
|
|
281074
|
+
const files = globbySync(["**/*.board.tsx", "**/*.circuit.tsx"], {
|
|
281075
281075
|
cwd: projectDir,
|
|
281076
281076
|
ignore: DEFAULT_IGNORED_PATTERNS
|
|
281077
281077
|
});
|
|
281078
|
-
const circuitFiles = files.map((f) => path24.join(projectDir, f));
|
|
281079
|
-
if (circuitFiles.length === 0) {
|
|
281080
|
-
const mainEntrypoint = await getEntrypoint({
|
|
281081
|
-
projectDir,
|
|
281082
|
-
onError: () => {}
|
|
281083
|
-
});
|
|
281084
|
-
if (mainEntrypoint) {
|
|
281085
|
-
circuitFiles.push(mainEntrypoint);
|
|
281086
|
-
}
|
|
281087
|
-
}
|
|
281088
281078
|
return {
|
|
281089
281079
|
projectDir,
|
|
281090
|
-
circuitFiles
|
|
281080
|
+
circuitFiles: files.map((f) => path24.join(projectDir, f))
|
|
281091
281081
|
};
|
|
281092
281082
|
}
|
|
281093
281083
|
|
|
281094
281084
|
// cli/build/register.ts
|
|
281095
281085
|
var registerBuild = (program3) => {
|
|
281096
281086
|
program3.command("build").description("Run tscircuit eval and output circuit json").argument("[file]", "Path to the entry file").option("--ignore-errors", "Do not exit with code 1 on errors").option("--ignore-warnings", "Do not log warnings").option("--disable-pcb", "Disable PCB outputs").action(async (file, options) => {
|
|
281097
|
-
const { projectDir, circuitFiles } = await getBuildEntrypoints({
|
|
281098
|
-
fileOrDir: file
|
|
281099
|
-
});
|
|
281087
|
+
const { projectDir, mainEntrypoint, circuitFiles } = await getBuildEntrypoints({ fileOrDir: file });
|
|
281100
281088
|
const platformConfig = {
|
|
281101
281089
|
pcbDisabled: options?.disablePcb
|
|
281102
281090
|
};
|
|
@@ -281105,16 +281093,8 @@ var registerBuild = (program3) => {
|
|
|
281105
281093
|
let hasErrors = false;
|
|
281106
281094
|
for (const filePath of circuitFiles) {
|
|
281107
281095
|
const relative7 = path25.relative(projectDir, filePath);
|
|
281108
|
-
const
|
|
281109
|
-
const
|
|
281110
|
-
let outputPath;
|
|
281111
|
-
if (isCircuit) {
|
|
281112
|
-
outputPath = path25.join(distDir, relative7.replace(/\.circuit\.tsx$/, ""), "circuit.json");
|
|
281113
|
-
} else if (isBoard) {
|
|
281114
|
-
outputPath = path25.join(distDir, relative7.replace(/\.board\.tsx$/, ""), "circuit.json");
|
|
281115
|
-
} else {
|
|
281116
|
-
outputPath = path25.join(distDir, "circuit.json");
|
|
281117
|
-
}
|
|
281096
|
+
const outputDirName = relative7.replace(/(\.board|\.circuit)?\.tsx$/, "");
|
|
281097
|
+
const outputPath = path25.join(distDir, outputDirName, "circuit.json");
|
|
281118
281098
|
const ok = await buildFile(filePath, outputPath, projectDir, options);
|
|
281119
281099
|
if (!ok)
|
|
281120
281100
|
hasErrors = true;
|