typedi
typedi copied to clipboard
Simple yet powerful dependency injection tool for JavaScript and TypeScript.
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.29.0. Release notes Sourced from eslint's releases. v9.29.0 Features f686fcb feat: add ecmaVersion: 2026, parsing using and await using (#19832) (Milos Djermanovic) 19cdd22 feat: prune...
### Description versions - "reflect-metadata": "^0.2.2", "type-graphql": "^2.0.0-rc.2", "typedi": "^0.10.0" **Minimal code-snippet showcasing the problem** ```ts import { Query, Resolver } from 'type-graphql'; import { Service } from 'typedi'; import...
Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.5.3. Release notes Sourced from prettier's releases. 3.5.3 🔗 Changelog 3.5.2 🔗 Changelog 3.5.1 🔗 Changelog 3.5.0 diff 🔗 Release note 3.4.2 🔗 Changelog 3.4.1...
Right now i have my core project. Lets say it has this class. ``` @Service() export class LoggerManager extends AbstractManager {} ``` and then my main project that is importing...
### Description This test fails: ```ts test('reset should clear container', () => { assert.ok(!typedi.Container.has('foobar'), "Should be no foobar in container."); typedi.Container.set('foobar', 'some value'); assert.ok(typedi.Container.has('foobar'), "Foobar should be in container."); typedi.Container.reset();...