@openparachute/hub 0.5.13-rc.12 → 0.5.13-rc.13
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/package.json
CHANGED
|
@@ -361,14 +361,16 @@ describe("buildWellKnown", () => {
|
|
|
361
361
|
test("tagline rides through from services.json (no resolver needed)", () => {
|
|
362
362
|
const notesWithTagline: ServiceEntry = {
|
|
363
363
|
...notes,
|
|
364
|
-
tagline: "Notes PWA
|
|
364
|
+
tagline: "Notes PWA — daemon deprecated 2026-05-22; install `app` for the current path.",
|
|
365
365
|
};
|
|
366
366
|
const doc = buildWellKnown({
|
|
367
367
|
services: [notesWithTagline],
|
|
368
368
|
canonicalOrigin: "https://x.example",
|
|
369
369
|
});
|
|
370
370
|
const svc = doc.services.find((s) => s.name === "parachute-notes");
|
|
371
|
-
expect(svc?.tagline).toBe(
|
|
371
|
+
expect(svc?.tagline).toBe(
|
|
372
|
+
"Notes PWA — daemon deprecated 2026-05-22; install `app` for the current path.",
|
|
373
|
+
);
|
|
372
374
|
});
|
|
373
375
|
|
|
374
376
|
test("falls back to / for empty paths", () => {
|
package/src/service-spec.ts
CHANGED
|
@@ -293,7 +293,7 @@ const NOTES_FALLBACK: FirstPartyFallback = {
|
|
|
293
293
|
name: "notes",
|
|
294
294
|
manifestName: "parachute-notes",
|
|
295
295
|
displayName: "Notes",
|
|
296
|
-
tagline: "Notes PWA
|
|
296
|
+
tagline: "Notes PWA — daemon deprecated 2026-05-22; install `app` for the current path.",
|
|
297
297
|
kind: "frontend",
|
|
298
298
|
port: 1942,
|
|
299
299
|
paths: ["/notes"],
|