@getmonoceros/workbench 1.21.0 → 1.21.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 -5
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
- package/templates/components/claude.yml +5 -0
package/dist/bin.js
CHANGED
|
@@ -6690,7 +6690,7 @@ var CLI_VERSION;
|
|
|
6690
6690
|
var init_version = __esm({
|
|
6691
6691
|
"src/version.ts"() {
|
|
6692
6692
|
"use strict";
|
|
6693
|
-
CLI_VERSION = true ? "1.21.
|
|
6693
|
+
CLI_VERSION = true ? "1.21.1" : "dev";
|
|
6694
6694
|
}
|
|
6695
6695
|
});
|
|
6696
6696
|
|
|
@@ -7321,9 +7321,12 @@ function generateComposedYml(name, composed, lookupManifest, repoUrls = [], port
|
|
|
7321
7321
|
lines.push("schemaVersion: 1");
|
|
7322
7322
|
lines.push(`name: ${name}`);
|
|
7323
7323
|
lines.push(
|
|
7324
|
-
"# Pinned runtime image
|
|
7324
|
+
"# Pinned runtime base image, reused on every apply (never auto-bumped)."
|
|
7325
7325
|
);
|
|
7326
|
-
lines.push(
|
|
7326
|
+
lines.push(
|
|
7327
|
+
"# `monoceros upgrade <name>` refreshes the tooling and moves this to the"
|
|
7328
|
+
);
|
|
7329
|
+
lines.push("# latest runtime when a newer one exists.");
|
|
7327
7330
|
lines.push(`runtimeVersion: ${DEFAULT_RUNTIME_VERSION}`);
|
|
7328
7331
|
lines.push("");
|
|
7329
7332
|
if (composed.languages.length > 0) {
|
|
@@ -7424,9 +7427,12 @@ function generateDocumentedYml(name, catalog, lookupManifest, repoUrls = [], por
|
|
|
7424
7427
|
lines.push("schemaVersion: 1");
|
|
7425
7428
|
lines.push(`name: ${name}`);
|
|
7426
7429
|
lines.push(
|
|
7427
|
-
"# Pinned runtime image
|
|
7430
|
+
"# Pinned runtime base image, reused on every apply (never auto-bumped)."
|
|
7431
|
+
);
|
|
7432
|
+
lines.push(
|
|
7433
|
+
"# `monoceros upgrade <name>` refreshes the tooling and moves this to the"
|
|
7428
7434
|
);
|
|
7429
|
-
lines.push("#
|
|
7435
|
+
lines.push("# latest runtime when a newer one exists.");
|
|
7430
7436
|
lines.push(`runtimeVersion: ${DEFAULT_RUNTIME_VERSION}`);
|
|
7431
7437
|
lines.push("");
|
|
7432
7438
|
if (byCategory.language.length > 0) {
|