melies-video-editor 0.1.0 → 0.1.2

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/README.md CHANGED
@@ -12,6 +12,22 @@ This project is not affiliated with the upstream author.
12
12
 
13
13
  - Start the UI (demo app): `pnpm dev`
14
14
 
15
+ ### Dev host wrapper (simulate embedding)
16
+
17
+ By default, `pnpm dev` runs the standalone editor view.
18
+
19
+ To run the dev host wrapper app (header/sidebar + editor), set:
20
+
21
+ - `VITE_DEV_HOST_APP=1`
22
+
23
+ Example (PowerShell):
24
+
25
+ - `$env:VITE_DEV_HOST_APP = "1"; pnpm dev`
26
+
27
+ Or create a `.env.local` file in the repo root:
28
+
29
+ - `VITE_DEV_HOST_APP=1`
30
+
15
31
  ## Build (library)
16
32
 
17
33
  - Build the npm package output into `dist/`: `pnpm build`