Skip to content

Commit

Permalink
release(version): v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
akanass committed Oct 27, 2017
1 parent 75d1c02 commit 7b73c5a
Show file tree
Hide file tree
Showing 7 changed files with 414 additions and 456 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
8.1.3
8.8.1
4 changes: 2 additions & 2 deletions Makefile
@@ -1,7 +1,7 @@
pretest:
@node ./node_modules/.bin/tslint -p ./tsconfig.json --type-check "./src/**/*.ts" "./test/**/*.ts" --exclude "./src/**/*.d.ts"
@node ./node_modules/.bin/tslint -p ./tsconfig.json "./src/**/*.ts" "./test/**/*.ts"
test:
@node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./test
@node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha "./test/**/*.ts"
coveralls:
cat ./coverage/lcov.info | node ./node_modules/.bin/coveralls
tsc:
Expand Down
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -58,7 +58,7 @@ $ yarn add @hapiness/biim

```javascript
"dependencies": {
"@hapiness/biim": "^1.1.0",
"@hapiness/biim": "^1.2.0",
//...
}
//...
Expand All @@ -78,6 +78,9 @@ Biim.badRequest('my-message', 'some-data', { key: 'bad-request' });

## Change History

* v1.2.0
* Support of `Boom v6.0.0`
* Latest packages' versions
* v1.1.0
* Improve error instantiation.
* Update unit tests.
Expand Down
29 changes: 14 additions & 15 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@hapiness/biim",
"version": "1.1.0",
"version": "1.2.0",
"description": "Error Library to use it inside Hapiness framework or standalone using Boom",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -59,23 +59,22 @@
},
"homepage": "https://github.com/hapinessjs/error#readme",
"dependencies": {
"@types/boom": "^4.3.5",
"@types/node": "^8.0.13",
"boom": "^5.1.0",
"debug": "^2.6.8"
"@types/boom": "^4.3.7",
"@types/node": "^8.0.47",
"boom": "^6.0.0",
"debug": "^3.1.0"
},
"devDependencies": {
"@types/fs-extra": "^3.0.2",
"coveralls": "^2.13.1",
"fs-extra": "^4.0.0",
"@types/fs-extra": "^4.0.2",
"coveralls": "^3.0.0",
"fs-extra": "^4.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.4.2",
"mocha-typescript": "^1.1.7",
"rimraf": "^2.6.1",
"rxjs": "^5.4.2",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"mocha": "^4.0.1",
"mocha-typescript": "^1.1.12",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"unit.js": "^2.0.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion test/mocha.opts
Expand Up @@ -2,6 +2,6 @@
--report lcovonly
--reporter spec
--recursive
--compilers ts:ts-node/register
--require ts-node/register
--throw-deprecation
--colors
1 change: 1 addition & 0 deletions tsconfig.build.json
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"outDir": ".",
"rootDir": "./src"
},
Expand Down

0 comments on commit 7b73c5a

Please sign in to comment.