@farming-labs/svelte 0.1.77 → 0.1.79

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/server.d.ts CHANGED
@@ -42,6 +42,7 @@ export interface DocsServer {
42
42
  load: (event: UnifiedLoadEvent) => Promise<{
43
43
  tree: ReturnType<typeof loadDocsNavTree>;
44
44
  flatPages: PageNode[];
45
+ url: string;
45
46
  title: string;
46
47
  description?: string;
47
48
  html: string;
package/dist/server.js CHANGED
@@ -522,6 +522,7 @@ export function createDocsServer(config = {}) {
522
522
  return {
523
523
  tree,
524
524
  flatPages,
525
+ url: currentUrl,
525
526
  title: data.title ?? fallbackTitle,
526
527
  description: data.description,
527
528
  html,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farming-labs/svelte",
3
- "version": "0.1.77",
3
+ "version": "0.1.79",
4
4
  "description": "SvelteKit adapter for @farming-labs/docs — content loading and navigation utilities",
5
5
  "keywords": [
6
6
  "docs",
@@ -56,7 +56,7 @@
56
56
  "devDependencies": {
57
57
  "@types/node": "^22.10.0",
58
58
  "typescript": "^5.9.3",
59
- "@farming-labs/docs": "0.1.77"
59
+ "@farming-labs/docs": "0.1.79"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "@farming-labs/docs": "*"