truecourse 0.7.0 → 0.7.1
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/cli.mjs
CHANGED
|
@@ -171303,7 +171303,7 @@ function readToolVersion() {
|
|
|
171303
171303
|
if (cachedVersion)
|
|
171304
171304
|
return cachedVersion;
|
|
171305
171305
|
if (true) {
|
|
171306
|
-
cachedVersion = "0.7.
|
|
171306
|
+
cachedVersion = "0.7.1";
|
|
171307
171307
|
return cachedVersion;
|
|
171308
171308
|
}
|
|
171309
171309
|
try {
|
|
@@ -199532,7 +199532,7 @@ async function runHooksRun() {
|
|
|
199532
199532
|
|
|
199533
199533
|
// tools/cli/src/index.ts
|
|
199534
199534
|
var program2 = new Command();
|
|
199535
|
-
program2.name("truecourse").version("0.7.
|
|
199535
|
+
program2.name("truecourse").version("0.7.1").description("TrueCourse CLI \u2014 analyze your repository and open the dashboard");
|
|
199536
199536
|
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) => {
|
|
199537
199537
|
if (options.service && options.console) {
|
|
199538
199538
|
console.error("error: --service and --console are mutually exclusive");
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/server.mjs
CHANGED
|
@@ -204348,7 +204348,7 @@ function readToolVersion() {
|
|
|
204348
204348
|
if (cachedVersion)
|
|
204349
204349
|
return cachedVersion;
|
|
204350
204350
|
if (true) {
|
|
204351
|
-
cachedVersion = "0.7.
|
|
204351
|
+
cachedVersion = "0.7.1";
|
|
204352
204352
|
return cachedVersion;
|
|
204353
204353
|
}
|
|
204354
204354
|
try {
|