mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 13:52:10 +03:00
Support Node v4 LTS semver-minor releases
Fixes #6473 - Replace Node v4.2 with v4 in Travis config - Replace ~4.2.0 with ^4.2.0 in engines to support semver-minor bumps in LTS line
This commit is contained in:
parent
76e9d88760
commit
4834cb436d
@ -3,7 +3,7 @@ language: node_js
|
|||||||
node_js:
|
node_js:
|
||||||
- "0.10"
|
- "0.10"
|
||||||
- "0.12"
|
- "0.12"
|
||||||
- "4.2"
|
- "4"
|
||||||
sudo: false
|
sudo: false
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
@ -40,7 +40,7 @@ Install Node.js.
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Node v0.10.x - recommended
|
# Node v0.10.x - recommended
|
||||||
# Node v0.12.x and v4.2.x - supported
|
# Node v0.12.x and v4.2.x / v4.3.x - supported
|
||||||
#
|
#
|
||||||
# Choose wisely
|
# Choose wisely
|
||||||
```
|
```
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
"test": "grunt validate --verbose"
|
"test": "grunt validate --verbose"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "~0.10.0 || ~0.12.0 || ~4.2.0",
|
"node": "~0.10.0 || ~0.12.0 || ^4.2.0",
|
||||||
"iojs": "~1.2.0"
|
"iojs": "~1.2.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
Loading…
Reference in New Issue
Block a user