Skip to content

Commit

Permalink
Bigfix: expose async container modules in public API
Browse files Browse the repository at this point in the history
  • Loading branch information
remojansen committed Feb 26, 2018
1 parent 4d9f2fc commit 7d88e7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inversify",
"version": "4.11.0",
"version": "4.11.1",
"description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
"main": "lib/inversify.js",
"jsnext:main": "es/inversify.js",
Expand Down
2 changes: 1 addition & 1 deletion src/inversify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as keys from "./constants/metadata_keys";
export const METADATA_KEY = keys;
export { Container } from "./container/container";
export { BindingScopeEnum, BindingTypeEnum, TargetTypeEnum } from "./constants/literal_types";
export { ContainerModule } from "./container/container_module";
export { AsyncContainerModule, ContainerModule } from "./container/container_module";
export { injectable } from "./annotation/injectable";
export { tagged } from "./annotation/tagged";
export { named } from "./annotation/named";
Expand Down

0 comments on commit 7d88e7c

Please sign in to comment.