@pome-sh/cli 0.42.0 → 0.42.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/build-info.json +3 -3
- package/dist/src/cli/main.js +9 -3
- package/package.json +1 -1
package/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.42.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.42.1",
|
|
4
|
+
"git_sha": "221b0951a0c236c1470e4d9602866726ed3592ad",
|
|
5
|
+
"build_time": "2026-08-30T07:18:38.274Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -481,6 +481,12 @@ var DOCS_TOPICS = [
|
|
|
481
481
|
path: "/docs/twins/slack",
|
|
482
482
|
keywords: ["messaging", "channels", "workspace", "slack", "exfiltration"]
|
|
483
483
|
},
|
|
484
|
+
{
|
|
485
|
+
id: "linear",
|
|
486
|
+
title: "Linear twin",
|
|
487
|
+
path: "/docs/twins/linear",
|
|
488
|
+
keywords: ["projects", "cycles", "linear"]
|
|
489
|
+
},
|
|
484
490
|
{
|
|
485
491
|
id: "gmail",
|
|
486
492
|
title: "Gmail twin",
|
|
@@ -4597,7 +4603,7 @@ function firstSentence(description) {
|
|
|
4597
4603
|
function resolveExampleRef(env = process.env) {
|
|
4598
4604
|
const override = env.POME_EXAMPLE_REF?.trim();
|
|
4599
4605
|
if (override) return override;
|
|
4600
|
-
const baked = "
|
|
4606
|
+
const baked = "221b0951a0c236c1470e4d9602866726ed3592ad".trim() ;
|
|
4601
4607
|
return FULL_SHA.test(baked) ? baked : "main";
|
|
4602
4608
|
}
|
|
4603
4609
|
function rawUrlFor(example, file, ref) {
|
|
@@ -4951,7 +4957,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4951
4957
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4952
4958
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4953
4959
|
function readPackageVersion() {
|
|
4954
|
-
if ("0.42.
|
|
4960
|
+
if ("0.42.1".length > 0) return "0.42.1";
|
|
4955
4961
|
try {
|
|
4956
4962
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4957
4963
|
const candidates = [
|
|
@@ -5715,7 +5721,7 @@ function createProgram() {
|
|
|
5715
5721
|
const { runTwinSeedCommand } = await import('../../twinSeed-X6VHBOLM.js');
|
|
5716
5722
|
await runTwinSeedCommand(names, options);
|
|
5717
5723
|
});
|
|
5718
|
-
twin.command("status").summary("
|
|
5724
|
+
twin.command("status").summary("Say whether the local twin is running").description(
|
|
5719
5725
|
"Say whether the twin `pome twin start` last booted here is still running, and print its paste-able env lines"
|
|
5720
5726
|
).action(async () => {
|
|
5721
5727
|
const statusPath = ".pome/twin-status.json";
|