Update version and expand exports

Upgraded package version from 0.0.1 to 0.0.2 to reflect new functionality. Added exports for `resolve` and `register` functions to extend the library capabilities.
This commit is contained in:
2024-08-14 20:50:09 +02:00
parent 92402f1523
commit c6ba0b7801
2 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "ts-injex",
"version": "0.0.1",
"version": "0.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -3,3 +3,6 @@ export * from './TSInjex';
export * from './decorators/Inject';
export * from './decorators/Register';
export * from './decorators/RegisterInstance';
export * from './functions/resolve';
export * from './functions/register';