@pome-sh/cli 0.34.0 → 0.34.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 +2 -2
- 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.34.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-28T12:
|
|
3
|
+
"version": "0.34.1",
|
|
4
|
+
"git_sha": "f298306cc34b9ddc2f7401fbb5948ad6cf030a26",
|
|
5
|
+
"build_time": "2026-08-28T12:41:38.665Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -4622,7 +4622,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4622
4622
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4623
4623
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4624
4624
|
function readPackageVersion() {
|
|
4625
|
-
if ("0.34.
|
|
4625
|
+
if ("0.34.1".length > 0) return "0.34.1";
|
|
4626
4626
|
try {
|
|
4627
4627
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4628
4628
|
const candidates = [
|
|
@@ -5471,7 +5471,7 @@ function createProgram() {
|
|
|
5471
5471
|
egressOut: opts.egressOut
|
|
5472
5472
|
});
|
|
5473
5473
|
});
|
|
5474
|
-
program.command("health").description("
|
|
5474
|
+
program.command("health", { hidden: true }).description("Internal: boot the GitHub twin in process and print its health JSON.").action(async () => {
|
|
5475
5475
|
const app = await createGitHubSmokeApp();
|
|
5476
5476
|
const response = await app.request("http://pome.local/healthz");
|
|
5477
5477
|
console.log(await response.text());
|