truecourse 0.1.6 → 0.1.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.
- package/cli.mjs +3 -0
- package/package.json +1 -1
- package/public/assets/index-2JAhA9Km.js +386 -0
- package/public/assets/index-vuAqJRVb.css +1 -0
- package/public/index.html +29 -12
- package/server.mjs +5 -36
- package/public/404.html +0 -12
- package/public/_next/static/chunks/381-85180243c39f893f.js +0 -1
- package/public/_next/static/chunks/552-6917726d81ee49a3.js +0 -1
- package/public/_next/static/chunks/572-f3883e9a1f12af9b.js +0 -1
- package/public/_next/static/chunks/597-bdc49f9b0afbcc65.js +0 -1
- package/public/_next/static/chunks/7273c211-cf17e181dbeacc49.js +0 -1
- package/public/_next/static/chunks/a51c26f2-8f567e78114a65f0.js +0 -1
- package/public/_next/static/chunks/app/_not-found/page-7ce89933d9d660c3.js +0 -1
- package/public/_next/static/chunks/app/layout-7b61f0cc08a2b70c.js +0 -1
- package/public/_next/static/chunks/app/page-cfec34672a92b197.js +0 -1
- package/public/_next/static/chunks/app/repos/[[...slug]]/page-775a75a81164bb72.js +0 -1
- package/public/_next/static/chunks/framework-56b72e8a5f911564.js +0 -1
- package/public/_next/static/chunks/main-19f32cbfea665136.js +0 -1
- package/public/_next/static/chunks/main-app-11a30c55aba12d50.js +0 -1
- package/public/_next/static/chunks/pages/_app-23d1cfabc23fb6da.js +0 -1
- package/public/_next/static/chunks/pages/_error-647008f4bf4249c2.js +0 -1
- package/public/_next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/public/_next/static/chunks/webpack-f20a7a6e701c70d8.js +0 -1
- package/public/_next/static/css/599369d853c61df7.css +0 -31
- package/public/_next/static/css/bfb5d4bf473c84ea.css +0 -1
- package/public/_next/static/g3B4jJ8IBEpckT1UcilLp/_buildManifest.js +0 -1
- package/public/_next/static/g3B4jJ8IBEpckT1UcilLp/_ssgManifest.js +0 -1
- package/public/index.txt +0 -19
- package/public/repos.html +0 -12
- package/public/repos.txt +0 -17
package/cli.mjs
CHANGED
|
@@ -12454,6 +12454,9 @@ async function runAnalyze() {
|
|
|
12454
12454
|
}
|
|
12455
12455
|
const violations = await res.json();
|
|
12456
12456
|
renderViolations(violations);
|
|
12457
|
+
const repoUrl = `${serverUrl}/repos/${repo.id}`;
|
|
12458
|
+
const link = `\x1B[4m\x1B[38;5;75m${repoUrl}\x1B[0m`;
|
|
12459
|
+
fe(`Open ${link} to see violations and architecture diagrams in the UI`);
|
|
12457
12460
|
} catch (err) {
|
|
12458
12461
|
spinner.stop("Analysis failed");
|
|
12459
12462
|
const message = err instanceof Error ? err.message : String(err);
|