@fluixi/head 1.0.0-alpha.43 → 1.0.0-alpha.44

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -20,7 +20,7 @@ seo({
20
20
 
21
21
  - **Reactive** — pass a signal (or a function reading one) and the document updates live:
22
22
  ```ts
23
- const [title, setTitle] = createSignal('Dashboard');
23
+ const title = $signal('Dashboard');
24
24
  seo(() => ({ title: title() })); // document.title tracks the signal — no reload
25
25
  ```
26
26
  - **SSR-first** — `renderHead(registry)` serializes the resolved tags into `<head>` markup plus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluixi/head",
3
- "version": "1.0.0-alpha.43",
3
+ "version": "1.0.0-alpha.44",
4
4
  "license": "MIT",
5
5
  "description": "Built-in reactive, SSR-first SEO & document-head management for Fluixi — title, meta, Open Graph, Twitter, JSON-LD, canonical, hreflang, sitemap & robots.",
6
6
  "type": "module",
@@ -22,10 +22,10 @@
22
22
  "access": "public"
23
23
  },
24
24
  "peerDependencies": {
25
- "@fluixi/reactive": "1.0.0-alpha.76"
25
+ "@fluixi/reactive": "1.0.0-alpha.77"
26
26
  },
27
27
  "devDependencies": {
28
- "@fluixi/reactive": "1.0.0-alpha.76"
28
+ "@fluixi/reactive": "1.0.0-alpha.77"
29
29
  },
30
30
  "scripts": {
31
31
  "build": "tsc -p tsconfig.lib.json",