Skip to content

Commit

Permalink
Add missing LazyServiceIdentifer (#1685)
Browse files Browse the repository at this point in the history
* fix: add missing LazyServiceIdentifer

* docs: update changelog
  • Loading branch information
notaphplover authored Dec 19, 2024
1 parent c70fc93 commit 5a62702
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

### Fixed
- Added missing `LazyServiceIdentifer`.

## [6.2.0]

Expand Down
10 changes: 10 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
/* eslint-disable @typescript-eslint/naming-convention */
import 'reflect-metadata';

import { LazyServiceIdentifier } from '@inversifyjs/common';

import * as keys from './constants/metadata_keys';

export { LazyServiceIdentifier } from '@inversifyjs/common';

/**
* @deprecated Use LazyServiceIdentifier instead
*/
export const LazyServiceIdentifer: typeof LazyServiceIdentifier =
LazyServiceIdentifier;

// eslint-disable-next-line @typescript-eslint/typedef
export const METADATA_KEY = keys;
export { Container } from './container/container';
Expand Down

0 comments on commit 5a62702

Please sign in to comment.