UNPKG

create-kaixa

Version:

Katalon Studio wrapper to make manual test writing much easier.

20 lines (15 loc) 499 B
#!/usr/bin/env node /** * This code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; var nodeVersion = process.versions.node; var parts = nodeVersion.split('.'); var majorVersion = parts[0]; if (majorVersion < 10) { console.error('Oops! You are running node version ' + majorVersion + '.'); console.log('Kaixa requires Node 10 or higher. Please update your version of Node.'); } else { require('./index.js')(); }