docs(cordis-tutorial): address review — effect-wrap demo timer, drop entry-order promise, stable ids in HMR example

This commit is contained in:
Turtle
2026-07-22 18:59:05 +08:00
parent 2cbb7848a7
commit 1f9633a8ce
3 changed files with 20 additions and 11 deletions

View File

@@ -26,7 +26,7 @@ This tutorial's launcher assembles the application from configuration. Create `c
- name: './hello.ts'
```
The file is a list of plugin entries. `name` is a module specifier — a relative path or an npm package name — and the loader mounts each entry in order.
The file is a list of plugin entries. `name` is a module specifier — a relative path or an npm package name — and the loader mounts every entry. Entries start concurrently, so list position guarantees nothing about which plugin loads first; ordering comes from service dependencies (`inject`, [chapter 3](03-services.md)), not from position in the file.
## Run it