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

@ -4,3 +4,4 @@ node_js:
- "4" - "4"
- "6" - "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 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. and make sure there are no `engine` related warnings.
## Usage ## Usage

View File

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