You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
310 B

#!/usr/bin/env node
const nodeVersionMatches = require('node-version-matches')
if (nodeVersionMatches('>=10')) {
const WsCli = require('../lib/cli-app')
const cli = new WsCli()
cli.start()
} else {
console.log('Sorry, this app requires node v10.0.0 or above. Please upgrade https://nodejs.org/en/')
}