@getmonoceros/workbench 1.22.0 → 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 +17 -1
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -5359,6 +5359,22 @@ function generateAgentsMd(input) {
|
|
|
5359
5359
|
" it holds Monoceros-managed directories (`.devcontainer/`, `home/`,",
|
|
5360
5360
|
" `data/`, `logs/`), not your code. Cloned repos already live at",
|
|
5361
5361
|
" `projects/<repo>/` and are git repositories \u2014 commit normally.",
|
|
5362
|
+
`- **Register new projects in \`${input.containerName}.code-workspace\`.** When`,
|
|
5363
|
+
" you scaffold a new project directly under `projects/` (not a clone of a",
|
|
5364
|
+
" repo already listed above), add it to the VS Code multi-root workspace so",
|
|
5365
|
+
` it shows up in the Explorer. Open \`/workspaces/${input.containerName}/${input.containerName}.code-workspace\``,
|
|
5366
|
+
" and append an entry to the `folders` array, for example",
|
|
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.",
|
|
5362
5378
|
"- You run as the `node` user. `sudo` is available but its effects do",
|
|
5363
5379
|
" not persist across rebuilds.",
|
|
5364
5380
|
"- A bare `EXPOSE` directive has no effect on host reachability. Ports",
|
|
@@ -7055,7 +7071,7 @@ var CLI_VERSION;
|
|
|
7055
7071
|
var init_version = __esm({
|
|
7056
7072
|
"src/version.ts"() {
|
|
7057
7073
|
"use strict";
|
|
7058
|
-
CLI_VERSION = true ? "1.22.
|
|
7074
|
+
CLI_VERSION = true ? "1.22.2" : "dev";
|
|
7059
7075
|
}
|
|
7060
7076
|
});
|
|
7061
7077
|
|