truecourse 0.5.10 → 0.5.11
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 +5 -1
- package/package.json +1 -1
- package/server.mjs +4 -0
package/cli.mjs
CHANGED
|
@@ -125553,6 +125553,10 @@ function detectLanguages(result) {
|
|
|
125553
125553
|
function readToolVersion() {
|
|
125554
125554
|
if (cachedVersion)
|
|
125555
125555
|
return cachedVersion;
|
|
125556
|
+
if (true) {
|
|
125557
|
+
cachedVersion = "0.5.11";
|
|
125558
|
+
return cachedVersion;
|
|
125559
|
+
}
|
|
125556
125560
|
try {
|
|
125557
125561
|
const here = fileURLToPath5(import.meta.url);
|
|
125558
125562
|
const pkgPath = path15.resolve(path15.dirname(here), "..", "..", "package.json");
|
|
@@ -129983,7 +129987,7 @@ async function runHooksRun() {
|
|
|
129983
129987
|
|
|
129984
129988
|
// tools/cli/src/index.ts
|
|
129985
129989
|
var program2 = new Command();
|
|
129986
|
-
program2.name("truecourse").version("0.5.
|
|
129990
|
+
program2.name("truecourse").version("0.5.11").description("TrueCourse CLI \u2014 analyze your repository and open the dashboard");
|
|
129987
129991
|
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) => {
|
|
129988
129992
|
if (options.service && options.console) {
|
|
129989
129993
|
console.error("error: --service and --console are mutually exclusive");
|
package/package.json
CHANGED
package/server.mjs
CHANGED
|
@@ -154272,6 +154272,10 @@ var cachedVersion = null;
|
|
|
154272
154272
|
function readToolVersion() {
|
|
154273
154273
|
if (cachedVersion)
|
|
154274
154274
|
return cachedVersion;
|
|
154275
|
+
if (true) {
|
|
154276
|
+
cachedVersion = "0.5.11";
|
|
154277
|
+
return cachedVersion;
|
|
154278
|
+
}
|
|
154275
154279
|
try {
|
|
154276
154280
|
const here = fileURLToPath4(import.meta.url);
|
|
154277
154281
|
const pkgPath = path14.resolve(path14.dirname(here), "..", "..", "package.json");
|