UNPKG

@interaktiv/dia-scripts

Version:

CLI toolbox with common scripts for most sort of projects at DIA

12 lines (10 loc) 339 B
"use strict"; const spawn = require('cross-spawn'); console.log('Installing and running gitt.io'); const args = process.argv.slice(2); const gittio = ['--package', 'gittio']; const call = ['--call', `'gittio install'`]; const result = spawn.sync('npx', [...gittio, ...call, ...args], { stdio: 'inherit' }); process.exit(result.status);