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
308 B
10 lines
308 B
#!/usr/bin/env node
|
|
const nodeVersionMatches = require('node-version-matches')
|
|
|
|
if (nodeVersionMatches('>=8')) {
|
|
const WsCli = require('../lib/cli-app')
|
|
const cli = new WsCli()
|
|
cli.start()
|
|
} else {
|
|
console.log('Sorry, this app requires node v8.0.0 or above. Please upgrade https://nodejs.org/en/')
|
|
}
|