thiagobustamante / typescript-ioc

A Lightweight annotation-based dependency injection container for typescript.
MIT License
526 stars 64 forks source link

Search for config file does not work on windows #27

Closed Morcatko closed 6 years ago

Morcatko commented 6 years ago

Hello, I just installed v1.2.0 and my app does not start. After some debugging I found a culprit in this commit - https://github.com/thiagobustamante/typescript-ioc/commit/3f0a3521c14d424bc594e93f8a652c61a2fe2d1f

It stucks in infite loop because configFile === ROOT never happens.

the ROOT is \ioc.config, but the configFile on windows ends up as C:\ioc.config

PS: Great work with typescript-ioc BTW. From all IOC libraries I found your one is the easiest to use.

thiagobustamante commented 6 years ago

Thanks for reporting!

Already published a new version to fix it. Please, try again with 1.2.1 version

Morcatko commented 6 years ago

That was super-fast. Works great. Thanks