@pome-sh/cli 0.26.0 → 0.26.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/README.md +1 -1
- package/dist/build-info.json +3 -3
- package/dist/src/cli/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ there, rewriting that heading and the manifest in one commit, and
|
|
|
131
131
|
`.github/workflows/release.yml` compares the local version against npm and
|
|
132
132
|
publishes when they differ. `pome --version` reports the allocated value from a
|
|
133
133
|
build-time constant, so a user can always tell whether their install carries a
|
|
134
|
-
given fix.
|
|
134
|
+
given fix.
|
|
135
135
|
|
|
136
136
|
## License
|
|
137
137
|
|
package/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.26.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.26.1",
|
|
4
|
+
"git_sha": "051d48875847b3a359443c5cb08d2ed435b8276b",
|
|
5
|
+
"build_time": "2026-08-21T11:23:06.732Z"
|
|
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.26.
|
|
4654
|
+
if ("0.26.1".length > 0) return "0.26.1";
|
|
4655
4655
|
try {
|
|
4656
4656
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4657
4657
|
const candidates = [
|
package/package.json
CHANGED