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

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