Merge pull request #41 from tailwindcss/hide-catchall-command-from-help

Hide catchall command from help
This commit is contained in:
Adam Wathan 2017-11-02 09:41:12 -04:00 committed by GitHub
commit 072c7136bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,9 @@ program.command('build')
})
})
program.command('*')
program.command('*', null, {
noHelp: true
})
.action(function () {
program.help()
})