@evjs/manifest 0.0.1-alpha.5 → 0.0.1-alpha.7

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.

Potentially problematic release.


This version of @evjs/manifest might be problematic. Click here for more details.

package/README.md CHANGED
@@ -17,9 +17,9 @@ Defines the structure of `manifest.json` emitted by `@evjs/webpack-plugin` and c
17
17
  ```json
18
18
  {
19
19
  "version": 1,
20
- "serverFunctions": {
20
+ "serverFns": {
21
21
  "<fnId>": {
22
- "file": "src/api/users.server.ts",
22
+ "moduleId": "f9b6...",
23
23
  "export": "getUsers"
24
24
  }
25
25
  }
package/esm/index.d.ts CHANGED
@@ -48,7 +48,7 @@ export interface EvManifest {
48
48
  /** Schema version — bump on breaking changes. */
49
49
  version: 1;
50
50
  /** Server function registry (Stage 2). */
51
- serverFunctions: Record<string, ServerFnEntry>;
51
+ serverFns: Record<string, ServerFnEntry>;
52
52
  /** SSR configuration (Stage 3 — reserved). */
53
53
  ssr?: SsrEntry;
54
54
  /** Client assets (Stage 3 — reserved). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evjs/manifest",
3
- "version": "0.0.1-alpha.5",
3
+ "version": "0.0.1-alpha.7",
4
4
  "description": "Shared manifest types for the ev framework",
5
5
  "type": "module",
6
6
  "publishConfig": {
package/esm/version.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare const VERSION = "0.0.1-alpha.5";
package/esm/version.js DELETED
@@ -1 +0,0 @@
1
- export const VERSION = "0.0.1-alpha.5";