@bluelibs/runner 4.6.0-alpha → 4.6.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 +16 -13
- package/dist/browser/index.cjs +4498 -0
- package/dist/browser/index.cjs.map +1 -0
- package/dist/browser/index.mjs +16 -42
- package/dist/browser/index.mjs.map +1 -1
- package/dist/edge/index.cjs +4498 -0
- package/dist/edge/index.cjs.map +1 -0
- package/dist/edge/index.mjs +16 -42
- package/dist/edge/index.mjs.map +1 -1
- package/dist/index.d.mts +4 -21
- package/dist/index.unused.js +302 -180
- package/dist/index.unused.js.map +1 -1
- package/dist/node/index.cjs +16 -42
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +16 -42
- package/dist/node/index.mjs.map +1 -1
- package/dist/universal/index.cjs +16 -42
- package/dist/universal/index.cjs.map +1 -1
- package/dist/universal/index.mjs +19 -77
- package/dist/universal/index.mjs.map +1 -1
- package/package.json +11 -5
package/README.md
CHANGED
|
@@ -9,20 +9,21 @@ _Or: How I Learned to Stop Worrying and Love Dependency Injection_
|
|
|
9
9
|
<a href="https://github.com/bluelibs/runner" target="_blank"><img src="https://img.shields.io/badge/github-blue" alt="GitHub" /></a>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
|
-
| Resource | Type
|
|
13
|
-
| ------------------------------------------------------------------------------------------------------------------- |
|
|
14
|
-
| [Presentation Website](https://runner.bluelibs.com/) | Website
|
|
15
|
-
| [BlueLibs Runner GitHub](https://github.com/bluelibs/runner) | GitHub
|
|
16
|
-
| [BlueLibs Runner Dev](https://github.com/bluelibs/runner-dev) | GitHub
|
|
17
|
-
| [UX Friendly Docs](https://bluelibs.github.io/runner/) | Docs
|
|
18
|
-
| [AI Friendly Docs (<5000 tokens)](https://github.com/bluelibs/runner/blob/main/AI.md) | Docs
|
|
19
|
-
| [Migrate from 3.x.x to 4.x.x](https://github.com/bluelibs/runner/blob/main/readmes/MIGRATION.md) | Guide
|
|
20
|
-
| [Runner Lore](https://github.com/bluelibs/runner/blob/main/readmes) | Docs
|
|
21
|
-
| [Example: Express + OpenAPI + SQLite](https://github.com/bluelibs/runner/tree/main/examples/express-openapi-sqlite) | Example
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
| Resource | Type | Notes |
|
|
13
|
+
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ | --------------------------------------------- |
|
|
14
|
+
| [Presentation Website](https://runner.bluelibs.com/) | Website | Overview, features, and highlights |
|
|
15
|
+
| [BlueLibs Runner GitHub](https://github.com/bluelibs/runner) | GitHub | Source code, issues, and releases |
|
|
16
|
+
| [BlueLibs Runner Dev](https://github.com/bluelibs/runner-dev) | GitHub | Development tools and CLI for BlueLibs Runner |
|
|
17
|
+
| [UX Friendly Docs](https://bluelibs.github.io/runner/) | Docs | Clean, navigable documentation |
|
|
18
|
+
| [AI Friendly Docs (<5000 tokens)](https://github.com/bluelibs/runner/blob/main/AI.md) | Docs | Short, token-friendly summary (<5000 tokens) |
|
|
19
|
+
| [Migrate from 3.x.x to 4.x.x](https://github.com/bluelibs/runner/blob/main/readmes/MIGRATION.md) | Guide | Step-by-step upgrade from v3 to v4 |
|
|
20
|
+
| [Runner Lore](https://github.com/bluelibs/runner/blob/main/readmes) | Docs | Design notes, deep dives, and context |
|
|
21
|
+
| [Example: Express + OpenAPI + SQLite](https://github.com/bluelibs/runner/tree/main/examples/express-openapi-sqlite) | Example | Full Express + OpenAPI + SQLite demo |
|
|
22
|
+
| [Example: Fastify + MikroORM + PostgreSQL](https://github.com/bluelibs/runner/tree/main/examples/fastify-mikroorm) | Example | Full Fastify + MikroORM + PostgreSQL demo |
|
|
23
|
+
| [OpenAI Runner Chatbot](https://chatgpt.com/g/g-68b756abec648191aa43eaa1ea7a7945-runner?model=gpt-5-thinking) | Chatbot | Ask questions interactively, or feed README.md to your own AI |
|
|
24
24
|
|
|
25
25
|
### Community & Policies
|
|
26
|
+
|
|
26
27
|
- Code of Conduct: see [CODE_OF_CONDUCT](./CODE_OF_CONDUCT.md)
|
|
27
28
|
- Contributing: see [CONTRIBUTING](./CONTRIBUTING.md)
|
|
28
29
|
- Security: see [SECURITY](./SECURITY.md)
|
|
@@ -996,7 +997,9 @@ type ConfigInput = ExtractResourceConfig<typeof config>; // { baseUrl: string }
|
|
|
996
997
|
type ConfigValue = ExtractResourceValue<typeof config>; // { baseUrl: string }
|
|
997
998
|
|
|
998
999
|
// Event example
|
|
999
|
-
const userRegistered = event<{ userId: string; email: string }>({
|
|
1000
|
+
const userRegistered = event<{ userId: string; email: string }>({
|
|
1001
|
+
id: "app.events.userRegistered",
|
|
1002
|
+
});
|
|
1000
1003
|
type UserRegisteredPayload = ExtractEventPayload<typeof userRegistered>; // { userId: string; email: string }
|
|
1001
1004
|
```
|
|
1002
1005
|
|