Compare commits
3 Commits
v1.2.0
...
feature/ex
Author | SHA1 | Date | |
---|---|---|---|
f653983140 | |||
3441bb21b0 | |||
1841ab2f92 |
@@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
## [1.1.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- feat: exported `inject()` function from the public API via `index.ts`
|
||||||
|
The function is now available as part of the main module exports.
|
||||||
|
|
||||||
## [1.0.0]
|
## [1.0.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -133,6 +140,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
---
|
---
|
||||||
|
|
||||||
[unreleased]: https://github.com/20Max01/TSinjex/compare/v1.0.0...HEAD
|
[unreleased]: https://github.com/20Max01/TSinjex/compare/v1.0.0...HEAD
|
||||||
|
[1.1.0]: https://github.com/20Max01/TSinjex/compare/v1.0.0...v1.1.0
|
||||||
[1.0.0]: https://github.com/20Max01/TSinjex/compare/v0.4.0...v1.0.0
|
[1.0.0]: https://github.com/20Max01/TSinjex/compare/v0.4.0...v1.0.0
|
||||||
[0.4.0]: https://github.com/20Max01/TSinjex/compare/v0.3.0...v0.4.0
|
[0.4.0]: https://github.com/20Max01/TSinjex/compare/v0.3.0...v0.4.0
|
||||||
[0.3.0]: https://github.com/20Max01/TSinjex/compare/v0.2.0...v0.3.0
|
[0.3.0]: https://github.com/20Max01/TSinjex/compare/v0.2.0...v0.3.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ts-injex",
|
"name": "ts-injex",
|
||||||
"version": "1.0.0",
|
"version": "1.1.0",
|
||||||
"description": "Simple boilerplate code free dependency injection system for TypeScript.",
|
"description": "Simple boilerplate code free dependency injection system for TypeScript.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
|
@@ -14,6 +14,7 @@ export * from './helper/ImplementsStatic.js';
|
|||||||
// Functions
|
// Functions
|
||||||
export * from './functions/resolve.js';
|
export * from './functions/resolve.js';
|
||||||
export * from './functions/register.js';
|
export * from './functions/register.js';
|
||||||
|
export * from './functions/inject.js';
|
||||||
|
|
||||||
// Interfaces & Types
|
// Interfaces & Types
|
||||||
export type * from './interfaces/ITSinjex.js';
|
export type * from './interfaces/ITSinjex.js';
|
||||||
|
Reference in New Issue
Block a user