UNPKG

157 BJavaScriptView Raw
1const { execSync } = require('child_process')
2
3module.exports = function showHelp(command) {
4 execSync(`netlify ${command} --help`, { stdio: [0, 1, 2] })
5}