@pome-sh/cli 0.36.0 → 0.36.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 +3 -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.36.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.36.1",
|
|
4
|
+
"git_sha": "f47a76e4951781e34bc063b31b2b1c1bb400802b",
|
|
5
|
+
"build_time": "2026-08-30T00:32:59.132Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -4412,6 +4412,7 @@ var CATALOG_EXAMPLES = [
|
|
|
4412
4412
|
"tasks/06-phishing-impersonation.seed.json",
|
|
4413
4413
|
"test/example.test.ts",
|
|
4414
4414
|
"test/model-routing.test.ts",
|
|
4415
|
+
"test/seed-inline-parity.test.ts",
|
|
4415
4416
|
"tsconfig.json",
|
|
4416
4417
|
"vitest.config.ts"
|
|
4417
4418
|
]
|
|
@@ -4641,7 +4642,7 @@ function firstSentence(description) {
|
|
|
4641
4642
|
function resolveExampleRef(env = process.env) {
|
|
4642
4643
|
const override = env.POME_EXAMPLE_REF?.trim();
|
|
4643
4644
|
if (override) return override;
|
|
4644
|
-
const baked = "
|
|
4645
|
+
const baked = "f47a76e4951781e34bc063b31b2b1c1bb400802b".trim() ;
|
|
4645
4646
|
return FULL_SHA.test(baked) ? baked : "main";
|
|
4646
4647
|
}
|
|
4647
4648
|
function rawUrlFor(example, file, ref) {
|
|
@@ -4996,7 +4997,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4996
4997
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4997
4998
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4998
4999
|
function readPackageVersion() {
|
|
4999
|
-
if ("0.36.
|
|
5000
|
+
if ("0.36.1".length > 0) return "0.36.1";
|
|
5000
5001
|
try {
|
|
5001
5002
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
5002
5003
|
const candidates = [
|