@tscircuit/cli 0.1.1015 → 0.1.1016

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
@@ -71664,7 +71664,7 @@ var registerStaticAssetLoaders = () => {
71664
71664
  // cli/main.ts
71665
71665
  var import_perfect_cli = __toESM2(require_dist2(), 1);
71666
71666
  // package.json
71667
- var version = "0.1.1014";
71667
+ var version = "0.1.1015";
71668
71668
  var package_default = {
71669
71669
  name: "@tscircuit/cli",
71670
71670
  main: "dist/cli/main.js",
@@ -71886,6 +71886,8 @@ var shouldBeInteractive = () => {
71886
71886
  return false;
71887
71887
  if (process.argv.includes("--non-interactive"))
71888
71888
  return false;
71889
+ if (process.argv.includes("-y") || process.argv.includes("--yes"))
71890
+ return false;
71889
71891
  if (process.env.TSCIRCUIT_NON_INTERACTIVE === "1")
71890
71892
  return false;
71891
71893
  if (!process.stdin.isTTY || !process.stdout.isTTY)
@@ -175257,6 +175259,8 @@ var getLatestVersion = async () => {
175257
175259
  var checkForTsciUpdates = async () => {
175258
175260
  if (process.env.TSCI_SKIP_CLI_UPDATE === "true")
175259
175261
  return false;
175262
+ if (!shouldBeInteractive())
175263
+ return false;
175260
175264
  const latestCliVersion = await getLatestVersion();
175261
175265
  if (!latestCliVersion)
175262
175266
  return false;
package/dist/lib/index.js CHANGED
@@ -60432,7 +60432,7 @@ var getNodeHandler = (winterSpec, { port, middleware = [] }) => {
60432
60432
  }));
60433
60433
  };
60434
60434
  // package.json
60435
- var version = "0.1.1014";
60435
+ var version = "0.1.1015";
60436
60436
  var package_default = {
60437
60437
  name: "@tscircuit/cli",
60438
60438
  main: "dist/cli/main.js",
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  ".": "./dist/cli/main.js",
6
6
  "./lib": "./dist/lib/index.js"
7
7
  },
8
- "version": "0.1.1015",
8
+ "version": "0.1.1016",
9
9
  "devDependencies": {
10
10
  "@babel/standalone": "^7.26.9",
11
11
  "@biomejs/biome": "^1.9.4",