@evjs/manifest 0.0.15 → 0.0.17

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/esm/index.d.ts CHANGED
@@ -3,9 +3,12 @@
3
3
  *
4
4
  * Shared manifest schemas for the ev framework build system.
5
5
  *
6
- * Two separate manifests are emitted during the build:
6
+ * Two separate manifests are emitted during fullstack builds:
7
7
  * - `dist/server/manifest.json` — server build metadata
8
8
  * - `dist/client/manifest.json` — client build metadata
9
+ *
10
+ * For CSR-only builds (`server: false`), only the client manifest
11
+ * is emitted to `dist/manifest.json` (flat output).
9
12
  */
10
13
  /** A registered server function entry. */
11
14
  export interface ServerFnEntry {
@@ -42,7 +45,8 @@ export interface RouteEntry {
42
45
  path: string;
43
46
  }
44
47
  /**
45
- * Client manifest — emitted to `dist/client/manifest.json`.
48
+ * Client manifest — emitted to `dist/client/manifest.json` (fullstack)
49
+ * or `dist/manifest.json` (CSR-only, `server: false`).
46
50
  *
47
51
  * Contains client bundle assets and discovered routes.
48
52
  */
package/esm/index.js CHANGED
@@ -3,8 +3,11 @@
3
3
  *
4
4
  * Shared manifest schemas for the ev framework build system.
5
5
  *
6
- * Two separate manifests are emitted during the build:
6
+ * Two separate manifests are emitted during fullstack builds:
7
7
  * - `dist/server/manifest.json` — server build metadata
8
8
  * - `dist/client/manifest.json` — client build metadata
9
+ *
10
+ * For CSR-only builds (`server: false`), only the client manifest
11
+ * is emitted to `dist/manifest.json` (flat output).
9
12
  */
10
13
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evjs/manifest",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "Shared manifest types for the ev framework",
5
5
  "type": "module",
6
6
  "publishConfig": {