@getmonoceros/workbench 1.20.0 → 1.20.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 +8 -3
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -4913,8 +4913,13 @@ function generateAgentsMd(input) {
|
|
|
4913
4913
|
lines.push("## Conventions and pitfalls");
|
|
4914
4914
|
lines.push("");
|
|
4915
4915
|
lines.push(
|
|
4916
|
-
`-
|
|
4917
|
-
"
|
|
4916
|
+
`- **Build everything under \`/workspaces/${input.containerName}/projects/\`.**`,
|
|
4917
|
+
" That is the project workspace \u2014 create new apps and scaffolding there",
|
|
4918
|
+
" (e.g. `projects/<app>/`), and `cd` into it before generating files. Do",
|
|
4919
|
+
` **not** put project files at the workspace root \`/workspaces/${input.containerName}\`:`,
|
|
4920
|
+
" it holds Monoceros-managed directories (`.devcontainer/`, `home/`,",
|
|
4921
|
+
" `data/`, `logs/`), not your code. Cloned repos already live at",
|
|
4922
|
+
" `projects/<repo>/` and are git repositories \u2014 commit normally.",
|
|
4918
4923
|
"- You run as the `node` user. `sudo` is available but its effects do",
|
|
4919
4924
|
" not persist across rebuilds.",
|
|
4920
4925
|
"- A bare `EXPOSE` directive has no effect on host reachability. Ports",
|
|
@@ -6407,7 +6412,7 @@ var CLI_VERSION;
|
|
|
6407
6412
|
var init_version = __esm({
|
|
6408
6413
|
"src/version.ts"() {
|
|
6409
6414
|
"use strict";
|
|
6410
|
-
CLI_VERSION = true ? "1.20.
|
|
6415
|
+
CLI_VERSION = true ? "1.20.1" : "dev";
|
|
6411
6416
|
}
|
|
6412
6417
|
});
|
|
6413
6418
|
|