@pome-sh/cli 0.24.2 → 0.25.0
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.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.25.0",
|
|
4
|
+
"git_sha": "65790f8a48832b9d2ddd0cf66d2d1964b6006b29",
|
|
5
|
+
"build_time": "2026-08-21T08:33:07.191Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -4651,7 +4651,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4651
4651
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4652
4652
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4653
4653
|
function readPackageVersion() {
|
|
4654
|
-
if ("0.
|
|
4654
|
+
if ("0.25.0".length > 0) return "0.25.0";
|
|
4655
4655
|
try {
|
|
4656
4656
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4657
4657
|
const candidates = [
|
|
@@ -4902,7 +4902,7 @@ function createProgram() {
|
|
|
4902
4902
|
}
|
|
4903
4903
|
}
|
|
4904
4904
|
);
|
|
4905
|
-
const session = program.command("session").description(
|
|
4905
|
+
const session = program.command("session").alias("sandbox").description(
|
|
4906
4906
|
"Hosted sandbox sessions (same API as the dashboard Twins page \u2014 requires login)"
|
|
4907
4907
|
);
|
|
4908
4908
|
session.command("create").description("Create a hosted sandbox session for one or more twins and print its connection info").requiredOption(
|
package/package.json
CHANGED