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