Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
akanass committed Jul 10, 2017
1 parent 0e9df86 commit 5b53144
Show file tree
Hide file tree
Showing 4 changed files with 271 additions and 220 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -447,6 +447,9 @@ To set up your development environment:

## Change History

* v2.4.0 (2017-07-10)
* Upgrade all packages' versions
* Change `no-shadowed-variable` value in `tslint` config
* v2.3.0 (2017-05-15)
* Upgrade all packages' versions
* Extended `tsconfig` files
Expand Down
20 changes: 10 additions & 10 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@akanass/rx-http-request",
"version": "2.3.0",
"version": "2.4.0",
"description": "The world-famous HTTP client Request now RxJS compliant, wrote in Typescript | ES6 for client and server side.",
"main": "index.js",
"browser": "browser.js",
Expand Down Expand Up @@ -49,24 +49,24 @@
},
"homepage": "https://github.com/njl07/rx-http-request#readme",
"dependencies": {
"@types/node": "^7.0.18",
"@types/request": "^0.0.43",
"@types/node": "^8.0.9",
"@types/request": "^0.0.45",
"request": "^2.81.0",
"rxjs": "^5.4.0"
"rxjs": "^5.4.2"
},
"devDependencies": {
"@types/fs-extra": "^3.0.0",
"@types/fs-extra": "^3.0.3",
"browserify": "^14.3.0",
"coveralls": "^2.13.1",
"exorcist": "^0.4.0",
"fs-extra": "^3.0.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.4.1",
"mocha-typescript": "^1.1.2",
"mocha": "^3.4.2",
"mocha-typescript": "^1.1.7",
"rimraf": "^2.6.1",
"ts-node": "^3.0.4",
"tslint": "^5.2.0",
"typescript": "^2.3.2",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"unit.js": "^2.0.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion tslint.json
Expand Up @@ -39,7 +39,7 @@
"no-empty": false,
"no-eval": true,
"no-inferrable-types": [true, "ignore-params"],
"no-shadowed-variable": true,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
Expand Down

0 comments on commit 5b53144

Please sign in to comment.