2017-03-20 23:32:24 +00:00
|
|
|
#!/usr/bin/env node
|
2018-06-28 23:44:25 +01:00
|
|
|
const nodeVersionMatches = require('node-version-matches')
|
2017-07-11 11:09:40 +01:00
|
|
|
|
2020-02-09 18:34:56 +00:00
|
|
|
if (nodeVersionMatches('>=10')) {
|
2019-05-27 11:25:06 +01:00
|
|
|
const WsCli = require('../lib/cli-app')
|
|
|
|
const cli = new WsCli()
|
2019-06-02 23:15:15 +01:00
|
|
|
cli.start()
|
2017-07-11 11:09:40 +01:00
|
|
|
} else {
|
2020-02-09 18:34:56 +00:00
|
|
|
console.log('Sorry, this app requires node v10.0.0 or above. Please upgrade https://nodejs.org/en/')
|
2017-07-11 11:09:40 +01:00
|
|
|
}
|