truecourse 0.6.7-next.1 → 0.6.8

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/cli.mjs +2 -2
  2. package/package.json +1 -1
  3. package/server.mjs +1 -1
package/cli.mjs CHANGED
@@ -129620,7 +129620,7 @@ function readToolVersion() {
129620
129620
  if (cachedVersion)
129621
129621
  return cachedVersion;
129622
129622
  if (true) {
129623
- cachedVersion = "0.6.7-next.1";
129623
+ cachedVersion = "0.6.8";
129624
129624
  return cachedVersion;
129625
129625
  }
129626
129626
  try {
@@ -155610,7 +155610,7 @@ async function runHooksRun() {
155610
155610
 
155611
155611
  // tools/cli/src/index.ts
155612
155612
  var program2 = new Command();
155613
- program2.name("truecourse").version("0.6.7-next.1").description("TrueCourse CLI \u2014 analyze your repository and open the dashboard");
155613
+ program2.name("truecourse").version("0.6.8").description("TrueCourse CLI \u2014 analyze your repository and open the dashboard");
155614
155614
  var dashboardCmd = program2.command("dashboard").description("Start the TrueCourse dashboard and open it in your browser").option("--reconfigure", "Re-prompt for console vs background service mode").option("--service", "Run as a background service (skips mode prompt)").option("--console", "Run in this terminal (skips mode prompt)").action(async (options) => {
155615
155615
  if (options.service && options.console) {
155616
155616
  console.error("error: --service and --console are mutually exclusive");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "truecourse",
3
- "version": "0.6.7-next.1",
3
+ "version": "0.6.8",
4
4
  "description": "Visualize your codebase architecture as an interactive graph",
5
5
  "type": "module",
6
6
  "bin": {
package/server.mjs CHANGED
@@ -158328,7 +158328,7 @@ function readToolVersion() {
158328
158328
  if (cachedVersion)
158329
158329
  return cachedVersion;
158330
158330
  if (true) {
158331
- cachedVersion = "0.6.7-next.1";
158331
+ cachedVersion = "0.6.8";
158332
158332
  return cachedVersion;
158333
158333
  }
158334
158334
  try {