Zoe
Zoe
## ๐ Bug description Setting `bootLibrariesFirst` will cause app configs to not load at the same time as all the other configs, the registration appears to be happening too late...
## ๐ Bug description Core doesn't support ESM properly, and it's an issue that affects the larger code base. Something about the process is completely breaking tests in this code,...
## ๐ชค Context Want to create workflows where all logs that get emitted all have a common property added to the logs. For example: 1. incoming http request 2. provide...
## ๐ชค Context Currently the `env-file` support is provided by node itself, rather than the library. Instead, the project will always search ```bash node --env-file .env.example dist/main.js ``` There are...
## Context Pino offers a more complete logging solution, and is intended as an upgrade path for those needing a more customizable logging system. This use case needs validation and...
**Bug description** 
## ๐ชค Context ```typescript const { logger } = await testRunner.getParams(); ``` vs ```typescript let params: TServiceParams await testRunner.run(i => params = i); const { logger } = params; ```...
## ๐ Bug description When using `bun run --hot src/main.ts` - making changes to the file will boot a new server but it doesn't seem to tear down the old...
## ๐ Bug description ### Version 1 ```typescript createModule .fromLibrary(LIB_EXAMPLE) .appendLibrary( CreateLibrary({ name: "test", services: { // ... } }) ) .extend() .toTest() ``` ### Version 2 ```typescript createModule .fromLibrary(LIB_EXAMPLE)...
## ๐ชค Context Want to adjust the config loader pattern to be easier to use / interact with. In practical projects, the method implemented for swapping out the config loader...