@getmonoceros/workbench 1.22.1 → 1.22.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/bin.js +12 -6
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -5364,11 +5364,17 @@ function generateAgentsMd(input) {
|
|
|
5364
5364
|
" repo already listed above), add it to the VS Code multi-root workspace so",
|
|
5365
5365
|
` it shows up in the Explorer. Open \`/workspaces/${input.containerName}/${input.containerName}.code-workspace\``,
|
|
5366
5366
|
" and append an entry to the `folders` array, for example",
|
|
5367
|
-
' `{ "path": "projects/<app>", "name": "<app>" }`.
|
|
5368
|
-
"
|
|
5369
|
-
"
|
|
5370
|
-
"
|
|
5371
|
-
"
|
|
5367
|
+
' `{ "path": "projects/<app>", "name": "<app>" }`.',
|
|
5368
|
+
" Add **exactly one** folder entry per directory directly under `projects/`:",
|
|
5369
|
+
" the top-level project directory itself, even when it contains several",
|
|
5370
|
+
" sub-projects (e.g. a `backend/` and a `frontend/`, or a multi-module",
|
|
5371
|
+
" layout). Do **not** register those sub-directories as separate roots \u2014 one",
|
|
5372
|
+
" root per top-level project keeps the Explorer readable as more projects",
|
|
5373
|
+
" land in the container. Cloned repos are added there automatically by the",
|
|
5374
|
+
" apply; projects you create yourself are not, so without this step VS Code",
|
|
5375
|
+
" (opened on the host from the workspace file) would not list them.",
|
|
5376
|
+
" Hand-added folder entries survive `monoceros apply`: the apply merges into",
|
|
5377
|
+
" the file, it does not overwrite your edits.",
|
|
5372
5378
|
"- You run as the `node` user. `sudo` is available but its effects do",
|
|
5373
5379
|
" not persist across rebuilds.",
|
|
5374
5380
|
"- A bare `EXPOSE` directive has no effect on host reachability. Ports",
|
|
@@ -7065,7 +7071,7 @@ var CLI_VERSION;
|
|
|
7065
7071
|
var init_version = __esm({
|
|
7066
7072
|
"src/version.ts"() {
|
|
7067
7073
|
"use strict";
|
|
7068
|
-
CLI_VERSION = true ? "1.22.
|
|
7074
|
+
CLI_VERSION = true ? "1.22.2" : "dev";
|
|
7069
7075
|
}
|
|
7070
7076
|
});
|
|
7071
7077
|
|