Skip to content

Commit 2d4758f

Browse files
author
Artem Sapegin
committedApr 4, 2019
Upgrade system requirements
* Node 10 * npm 6
1 parent 1ce5ab7 commit 2d4758f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ cache:
33
directories:
44
- node_modules
55
node_js:
6-
- 9
6+
- 10

‎Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ To learn command line basics we recommend [Really Friendly Command Line Intro](h
2222
## System requirements
2323

2424
- [Git](https://git-scm.com/) 2.0, or newer
25-
- [Node.js](https://nodejs.org/) 8.6, or newer
26-
- [npm](https://www.npmjs.com/) 5.4, or newer
25+
- [Node.js](https://nodejs.org/) 10.0, or newer
26+
- [npm](https://www.npmjs.com/) 6.0, or newer
2727

2828
We recommend [nvm](https://github.com/creationix/nvm) or [n](https://github.com/tj/n) to install Node.js.
2929

‎scripts/setup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
var verifySystem = require('./vendor/workshop-setup').verifySystem;
22

33
verifySystem([
4-
verifySystem.validators.node('>=8.6.0'),
5-
verifySystem.validators.npm('>=5.4.0'),
4+
verifySystem.validators.node('>=10.0.0'),
5+
verifySystem.validators.npm('>=6.0.0'),
66
function verifyDeps() {
77
// Doesn't really verify dependencies, just checks that the user has
88
// installed them at least once. Real verification would be too slow

0 commit comments

Comments
 (0)
Please sign in to comment.