@basou/cli 0.42.1 → 0.42.2
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/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/program.js +3 -0
- package/dist/program.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -11770,6 +11770,9 @@ function formatCoverageReport(result) {
|
|
|
11770
11770
|
lines.push(
|
|
11771
11771
|
"Register the project in a workspace's import.source_roots to start capturing it (registering a path in ~/.basou/portfolio.yaml alone imports nothing \u2014 it only adds the workspace to this view). A scratch directory, a temp path, or a GUI tool's own working directory has no repo to declare and is expected to stay here."
|
|
11772
11772
|
);
|
|
11773
|
+
lines.push(
|
|
11774
|
+
"A directory that no longer exists is still worth declaring: when a project moved or was renamed, add its OLD path \u2014 written relative to the workspace it now lives in \u2014 to that workspace's import.source_roots. The path does not have to exist for the sessions recorded under it to be captured on the next refresh."
|
|
11775
|
+
);
|
|
11773
11776
|
return [...lines, ...inertLines(result)];
|
|
11774
11777
|
}
|
|
11775
11778
|
function inertLines(result) {
|