Merge pull request #34 from yellowred/add-node8
Add NodeJS v8.2.1 support
This commit is contained in:
commit
66c1954441
|
@ -3,4 +3,5 @@ language: node_js
|
|||
node_js:
|
||||
- "4"
|
||||
- "6"
|
||||
- "7"
|
||||
- "7"
|
||||
- "8"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue