We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb64329 commit 2ba8ce0Copy full SHA for 2ba8ce0
.travis.yml
@@ -1,11 +1,10 @@
1
language: node_js
2
3
node_js:
4
- - "6"
5
- "8"
6
- "10"
7
- # - "11" TODO: add 11 in April when 12 goes live.
8
- - "node"
+ - "12"
+ - "13"
9
10
os:
11
- linux
yargs.js
@@ -1,5 +1,9 @@
'use strict'
+// an async function fails early in Node.js versions prior to 8.
+async function requiresNode8OrGreater () {}
+requiresNode8OrGreater()
+
const argsert = require('./lib/argsert')
const fs = require('fs')
const Command = require('./lib/command')
0 commit comments