Skip to content

Commit

Permalink
merge: release 0.9.1 (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoNameProvided authored Jan 11, 2021
2 parents 13ab57b + 8d48ae3 commit 7ba2005
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.9.1 - 2021.01.11

### Fixed

- correctly export error classes from package root

## 0.9.0 - 2021.01.10

### BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedi",
"version": "0.9.0",
"version": "0.9.1",
"description": "Dependency injection for TypeScript.",
"author": "TypeStack contributors",
"license": "MIT",
Expand Down
20 changes: 13 additions & 7 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
import { Container } from './container.class';

export * from './decorators/service.decorator';
export * from './decorators/inject.decorator';
export * from './decorators/inject-many.decorator';
export { Container } from './container.class';
export { ContainerInstance } from './container-instance.class';
export { Token } from './token.class';
export * from './decorators/inject.decorator';
export * from './decorators/service.decorator';

export * from './error/cannot-inject-value.error';
export * from './error/missing-provided-service-type.error';
export * from './error/service-not-found.error';

export { Handler } from './interfaces/handler.interface';
export { ServiceMetadata } from './interfaces/service-metadata.interface.';
export { ServiceOptions } from './interfaces/service-options.interface';
export { Constructable } from './types/constructable.type';
export { ServiceIdentifier } from './types/service-identifier.type';
export { ServiceMetadata } from './interfaces/service-metadata.interface.';
export { Constructable as ObjectType } from './types/constructable.type';

export { ContainerInstance } from './container-instance.class';
export { Container } from './container.class';
export { Token } from './token.class';

export default Container;

0 comments on commit 7ba2005

Please sign in to comment.