File tree 4 files changed +21
-9
lines changed
4 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.9.1 - 2021.01.11
4
+
5
+ ### Fixed
6
+
7
+ - correctly export error classes from package root
8
+
3
9
## 0.9.0 - 2021.01.10
4
10
5
11
### BREAKING CHANGES
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " typedi" ,
3
- "version" : " 0.9.0 " ,
3
+ "version" : " 0.9.1 " ,
4
4
"description" : " Dependency injection for TypeScript." ,
5
5
"author" : " TypeStack contributors" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change 1
1
import { Container } from './container.class' ;
2
2
3
- export * from './decorators/service.decorator' ;
4
- export * from './decorators/inject.decorator' ;
5
3
export * from './decorators/inject-many.decorator' ;
6
- export { Container } from './container.class' ;
7
- export { ContainerInstance } from './container-instance.class' ;
8
- export { Token } from './token.class' ;
4
+ export * from './decorators/inject.decorator' ;
5
+ export * from './decorators/service.decorator' ;
6
+
7
+ export * from './error/cannot-inject-value.error' ;
8
+ export * from './error/missing-provided-service-type.error' ;
9
+ export * from './error/service-not-found.error' ;
10
+
9
11
export { Handler } from './interfaces/handler.interface' ;
12
+ export { ServiceMetadata } from './interfaces/service-metadata.interface.' ;
10
13
export { ServiceOptions } from './interfaces/service-options.interface' ;
14
+ export { Constructable } from './types/constructable.type' ;
11
15
export { ServiceIdentifier } from './types/service-identifier.type' ;
12
- export { ServiceMetadata } from './interfaces/service-metadata.interface.' ;
13
- export { Constructable as ObjectType } from './types/constructable.type' ;
16
+
17
+ export { ContainerInstance } from './container-instance.class' ;
18
+ export { Container } from './container.class' ;
19
+ export { Token } from './token.class' ;
14
20
15
21
export default Container ;
You can’t perform that action at this time.
0 commit comments