@meith/plugin-kit 0.25.1 → 0.26.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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/hooks.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meith/plugin-kit",
3
- "version": "0.25.1",
3
+ "version": "0.26.1",
4
4
  "description": "The SDK for writing a Meith plugin: typed manifests, hooks, routes, pages and migrations.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -20,8 +20,8 @@
20
20
  "access": "public"
21
21
  },
22
22
  "dependencies": {
23
- "@meith/core": "^0.25.1",
24
- "@meith/theme-kit": "^0.25.1"
23
+ "@meith/core": "^0.26.1",
24
+ "@meith/theme-kit": "^0.26.1"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "react": "^19.2.0"
package/src/hooks.ts CHANGED
@@ -30,7 +30,7 @@
30
30
  * between the dev server, a serverless bundle and the worker.
31
31
  *
32
32
  * So ordering is **(priority, plugin key)**, both total and both declared: never
33
- * registration order, never the order `community.config.ts` happens to list plugins
33
+ * registration order, never the order `meith.config.ts` happens to list plugins
34
34
  * in, and never `Object.keys`. See `host.ts`.
35
35
  *
36
36
  * ## What is deliberately not here