Skip to content

Commit 934f6a8

Browse files
authored
Merge pull request #69 from hapinessjs/next
release(version): v1.2.2
2 parents d214dde + 50fba2f commit 934f6a8

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ $ yarn add @hapiness/core rxjs
8787

8888
```javascript
8989
"dependencies": {
90-
"@hapiness/core": "^1.2.1",
90+
"@hapiness/core": "^1.2.2",
9191
//...
9292
}
9393
//...
@@ -115,8 +115,8 @@ To set up your development environment:
115115
[Back to top](#table-of-contents)
116116

117117
## Change History
118-
* v1.2.1 (2017-11-20)
119-
* Export `createDecorator()`, `extractMetadata()` methods
118+
* v1.2.2 (2017-11-20)
119+
* Export `createDecorator()`, `extractMetadata()`, `extractMetadataByDecorator`, `errorHandler()` methods and `DependencyInjection` class
120120
* Documentation
121121
* v1.2.0 (2017-11-18)
122122
* Http Handler, Observable can set headers

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/core",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Project to have a HapiJS (https://hapijs.com/) based framework to create easier NodeJS back-end with some awesome features",
55
"main": "commonjs/index.js",
66
"types": "index.d.ts",

src/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ export {
2020
OnModuleInstantiated,
2121
OnExtensionLoad,
2222
createDecorator,
23-
extractMetadata
23+
extractMetadata,
24+
extractMetadataByDecorator,
25+
DependencyInjection,
26+
errorHandler
2427
} from './core';
2528

2629
export {

0 commit comments

Comments
 (0)