@pome-sh/cli 0.23.46 → 0.23.47
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 +8 -5
- package/dist/build-info.json +3 -3
- package/dist/src/cli/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -121,14 +121,17 @@ npm test
|
|
|
121
121
|
|
|
122
122
|
The package publishes the `pome` binary from `dist/src/cli/main.js`.
|
|
123
123
|
|
|
124
|
-
### Versioning — every behavior change ships with a
|
|
124
|
+
### Versioning — every behavior change ships with a release, and you do not write the number
|
|
125
125
|
|
|
126
|
-
|
|
127
|
-
`
|
|
126
|
+
Add the user-facing entry to `CHANGELOG.md` under an `## Unreleased (patch)` (or
|
|
127
|
+
`(minor)`) heading, above the newest released one, and leave `version` in
|
|
128
|
+
`cli/package.json` alone — a PR that moves it fails CI. Merging to `main` is the
|
|
129
|
+
release trigger: `.github/workflows/allocate-version.yml` allocates the number
|
|
130
|
+
there, rewriting that heading and the manifest in one commit, and
|
|
128
131
|
`.github/workflows/release.yml` compares the local version against npm and
|
|
129
|
-
publishes when they differ. `pome --version` reports the
|
|
132
|
+
publishes when they differ. `pome --version` reports the allocated value from a
|
|
130
133
|
build-time constant, so a user can always tell whether their install carries a
|
|
131
|
-
given fix.
|
|
134
|
+
given fix. See [`RELEASING.md`](../RELEASING.md).
|
|
132
135
|
|
|
133
136
|
## License
|
|
134
137
|
|
package/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.23.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.23.47",
|
|
4
|
+
"git_sha": "95240f908f2348af9ad981943e2aab76b5df844b",
|
|
5
|
+
"build_time": "2026-08-13T17:53:11.645Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -4580,7 +4580,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4580
4580
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4581
4581
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4582
4582
|
function readPackageVersion() {
|
|
4583
|
-
if ("0.23.
|
|
4583
|
+
if ("0.23.47".length > 0) return "0.23.47";
|
|
4584
4584
|
try {
|
|
4585
4585
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4586
4586
|
const candidates = [
|
package/package.json
CHANGED