eprec 1.3.0 → 1.5.0
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 +4 -4
- package/app/assets/styles.css +329 -182
- package/app/components/style-system-sample.tsx +197 -0
- package/app/styles/tokens.ts +99 -0
- package/app-server.ts +175 -6
- package/cli.ts +16 -9
- package/package.json +2 -2
- package/process-course/edits/cli.ts +8 -4
package/README.md
CHANGED
|
@@ -48,14 +48,14 @@ bun process-course-video.ts "/path/to/input.mp4" "/path/to/output" \
|
|
|
48
48
|
|
|
49
49
|
## Web UI (experimental)
|
|
50
50
|
|
|
51
|
-
Start the Remix-powered UI shell
|
|
51
|
+
Start the Remix-powered UI shell (watch mode enabled):
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
bun
|
|
54
|
+
bun run app:start
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
Then open `http://
|
|
58
|
-
defaults.
|
|
57
|
+
Then open `http://localhost:3000`. Use `-- --port` or `-- --host` to override
|
|
58
|
+
the defaults.
|
|
59
59
|
|
|
60
60
|
## CLI Options
|
|
61
61
|
|