Merge pull request #34 from yellowred/add-node8

Add NodeJS v8.2.1 support
This commit is contained in:
Miroslav Bajtoš 2017-07-21 13:24:40 +02:00 committed by GitHub
commit 66c1954441
3 changed files with 6 additions and 5 deletions

View File

@ -3,4 +3,5 @@ language: node_js
node_js:
- "4"
- "6"
- "7"
- "7"
- "8"

View File

@ -32,7 +32,7 @@ $ npm install --save loopback-context cls-hooked
```
Make sure you are running on a Node.js version supported by this module
(`^4.5`, `^5.10` or `^6.0`). When installing, check the output of `npm install`
(`^4.5`, `^5.10`, `^6.0`, `^7.0` or `^8.2.1`). When installing, check the output of `npm install`
and make sure there are no `engine` related warnings.
## Usage

View File

@ -1,9 +1,9 @@
{
"name": "loopback-context",
"version": "3.2.0",
"version": "3.3.0",
"description": "Current context for LoopBack applications, based on cls-hooked",
"engines": {
"node": "^4.5 || ^5.10 || ^6.0 || ^7.0"
"node": "^4.5 || ^5.10 || ^6.0 || ^7.0 || ^8.2.1"
},
"keywords": [
"StrongLoop",
@ -23,7 +23,7 @@
},
"license": "MIT",
"dependencies": {
"cls-hooked": "^4.0.1"
"cls-hooked": "^4.2.0"
},
"devDependencies": {
"async-1.5.2": "file:./test/stub-modules/async-1.5.2",