@tscircuit/cli 0.1.157 → 0.1.159

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 (3) hide show
  1. package/README.md +23 -23
  2. package/dist/main.js +10 -34
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -36,31 +36,31 @@ Usage: tsci [options] [command]
36
36
  CLI for developing tscircuit packages
37
37
 
38
38
  Options:
39
- -h, --help display help for command
39
+ -h, --help display help for command
40
40
 
41
41
  Commands:
42
- init [directory] Initialize a new TSCircuit project in the specified
43
- directory (or current directory if none is
44
- provided)
45
- dev [options] [file] Start development server for a package
46
- clone [options] <package> Clone a package from the registry
47
- push [options] [file] Save snippet code to Registry API
48
- auth Login/logout
49
- login Login to tscircuit registry
50
- logout Logout from tscircuit registry
51
- config Manage tscircuit CLI configuration
52
- export [options] <file> Export tscircuit code to various formats
53
- build [options] [file] Run tscircuit eval and output circuit json
54
- add <component> Add a tscircuit component package to your project
55
- remove <component> Remove a tscircuit component package from your
56
- project
57
- snapshot [options] [file] Generate schematic and PCB snapshots (add --3d for
58
- 3d preview)
59
- setup Setup utilities like GitHub Actions
60
- upgrade Upgrade CLI to the latest version
61
- search <query> Search for packages in the tscircuit registry
62
- version Print CLI version
63
- help [command] display help for command
42
+ init [options] [directory] Initialize a new TSCircuit project in the
43
+ specified directory (or current directory if none
44
+ is provided)
45
+ dev [options] [file] Start development server for a package
46
+ clone [options] <package> Clone a package from the registry
47
+ push [options] [file] Save snippet code to Registry API
48
+ auth Login/logout
49
+ login Login to tscircuit registry
50
+ logout Logout from tscircuit registry
51
+ config Manage tscircuit CLI configuration
52
+ export [options] <file> Export tscircuit code to various formats
53
+ build [options] [file] Run tscircuit eval and output circuit json
54
+ add <component> Add a tscircuit component package to your project
55
+ remove <component> Remove a tscircuit component package from your
56
+ project
57
+ snapshot [options] [file] Generate schematic and PCB snapshots (add --3d for
58
+ 3d preview)
59
+ setup Setup utilities like GitHub Actions
60
+ upgrade Upgrade CLI to the latest version
61
+ search <query> Search for packages in the tscircuit registry
62
+ version Print CLI version
63
+ help [command] display help for command
64
64
  ```
65
65
  <!-- END_HELP_OUTPUT -->
66
66
 
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.156";
240542
+ var version = "0.1.158";
240543
240543
  var package_default = {
240544
240544
  name: "@tscircuit/cli",
240545
240545
  version,
@@ -240710,9 +240710,9 @@ var updateTsci = async () => {
240710
240710
 
240711
240711
  // cli/init/register.ts
240712
240712
  var registerInit = (program3) => {
240713
- program3.command("init").description("Initialize a new TSCircuit project in the specified directory (or current directory if none is provided)").argument("[directory]", "Directory name (optional, defaults to current directory)").action(async (directory) => {
240713
+ program3.command("init").description("Initialize a new TSCircuit project in the specified directory (or current directory if none is provided)").argument("[directory]", "Directory name (optional, defaults to current directory)").option("-y, --yes", "Use defaults and skip prompts").action(async (directory, options) => {
240714
240714
  await checkForTsciUpdates();
240715
- if (!directory) {
240715
+ if (!directory && !options?.yes) {
240716
240716
  const { continueInCurrentDirectory } = await prompts({
240717
240717
  type: "confirm",
240718
240718
  name: "continueInCurrentDirectory",
@@ -240734,7 +240734,7 @@ var registerInit = (program3) => {
240734
240734
  }
240735
240735
  const projectDir = directory ? path10.resolve(process.cwd(), directory) : process.cwd();
240736
240736
  const defaultPackageName = path10.basename(projectDir);
240737
- const { packageName } = await prompts({
240737
+ const { packageName } = options?.yes ? { packageName: defaultPackageName } : await prompts({
240738
240738
  type: "text",
240739
240739
  name: "packageName",
240740
240740
  message: "Package name",
@@ -281059,40 +281059,25 @@ 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 circuitFiles2 = [];
281063
- const mainEntrypoint2 = await getEntrypoint({
281064
- projectDir: projectDir2,
281065
- onError: () => {}
281066
- });
281067
- const files2 = globbySync("**/*.circuit.tsx", {
281062
+ const files2 = globbySync(["**/*.board.tsx", "**/*.circuit.tsx"], {
281068
281063
  cwd: projectDir2,
281069
281064
  ignore: DEFAULT_IGNORED_PATTERNS
281070
281065
  });
281071
- for (const f of files2) {
281072
- circuitFiles2.push(path24.join(projectDir2, f));
281073
- }
281074
281066
  return {
281075
281067
  projectDir: projectDir2,
281076
- mainEntrypoint: mainEntrypoint2 || undefined,
281077
- circuitFiles: circuitFiles2
281068
+ circuitFiles: files2.map((f) => path24.join(projectDir2, f))
281078
281069
  };
281079
281070
  }
281080
281071
  return { projectDir: path24.dirname(resolved), circuitFiles: [resolved] };
281081
281072
  }
281082
281073
  const projectDir = resolvedRoot;
281083
- const circuitFiles = [];
281084
- const mainEntrypoint = await getEntrypoint({ projectDir, onError: () => {} });
281085
- const files = globbySync("**/*.circuit.tsx", {
281074
+ const files = globbySync(["**/*.board.tsx", "**/*.circuit.tsx"], {
281086
281075
  cwd: projectDir,
281087
281076
  ignore: DEFAULT_IGNORED_PATTERNS
281088
281077
  });
281089
- for (const f of files) {
281090
- circuitFiles.push(path24.join(projectDir, f));
281091
- }
281092
281078
  return {
281093
281079
  projectDir,
281094
- mainEntrypoint: mainEntrypoint || undefined,
281095
- circuitFiles
281080
+ circuitFiles: files.map((f) => path24.join(projectDir, f))
281096
281081
  };
281097
281082
  }
281098
281083
 
@@ -281106,19 +281091,10 @@ var registerBuild = (program3) => {
281106
281091
  const distDir = path25.join(projectDir, "dist");
281107
281092
  fs25.mkdirSync(distDir, { recursive: true });
281108
281093
  let hasErrors = false;
281109
- if (mainEntrypoint) {
281110
- const outputPath = path25.join(distDir, "circuit.json");
281111
- const ok = await buildFile(mainEntrypoint, outputPath, projectDir, {
281112
- ...options,
281113
- platformConfig
281114
- });
281115
- if (!ok)
281116
- hasErrors = true;
281117
- }
281118
281094
  for (const filePath of circuitFiles) {
281119
281095
  const relative7 = path25.relative(projectDir, filePath);
281120
- const isCircuit = filePath.endsWith(".circuit.tsx");
281121
- const outputPath = isCircuit ? path25.join(distDir, relative7.replace(/\.circuit\.tsx$/, ""), "circuit.json") : path25.join(distDir, "circuit.json");
281096
+ const outputDirName = relative7.replace(/(\.board|\.circuit)?\.tsx$/, "");
281097
+ const outputPath = path25.join(distDir, outputDirName, "circuit.json");
281122
281098
  const ok = await buildFile(filePath, outputPath, projectDir, options);
281123
281099
  if (!ok)
281124
281100
  hasErrors = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.157",
3
+ "version": "0.1.159",
4
4
  "main": "dist/main.js",
5
5
  "devDependencies": {
6
6
  "@babel/standalone": "^7.26.9",