@getmonoceros/workbench 1.22.0 → 1.22.1
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 +11 -1
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -5359,6 +5359,16 @@ 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>" }`. Cloned repos are added',
|
|
5368
|
+
" there automatically by the apply; projects you create yourself are not, so",
|
|
5369
|
+
" without this step VS Code (opened on the host from the workspace file) would",
|
|
5370
|
+
" not list them. Hand-added folder entries survive `monoceros apply`: the",
|
|
5371
|
+
" apply merges into the file, it does not overwrite your edits.",
|
|
5362
5372
|
"- You run as the `node` user. `sudo` is available but its effects do",
|
|
5363
5373
|
" not persist across rebuilds.",
|
|
5364
5374
|
"- A bare `EXPOSE` directive has no effect on host reachability. Ports",
|
|
@@ -7055,7 +7065,7 @@ var CLI_VERSION;
|
|
|
7055
7065
|
var init_version = __esm({
|
|
7056
7066
|
"src/version.ts"() {
|
|
7057
7067
|
"use strict";
|
|
7058
|
-
CLI_VERSION = true ? "1.22.
|
|
7068
|
+
CLI_VERSION = true ? "1.22.1" : "dev";
|
|
7059
7069
|
}
|
|
7060
7070
|
});
|
|
7061
7071
|
|