mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 23:33:38 -05:00
14 lines
368 B
JavaScript
Executable File
14 lines
368 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
var standardVersion = require('../index')
|
|
var cmdParser = require('../command')
|
|
|
|
/* istanbul ignore if */
|
|
if (process.version.match(/v(\d+)\./)[1] < 4) {
|
|
console.error('standard-version: Node v4 or greater is required. `standard-version` did not run.')
|
|
} else {
|
|
standardVersion(cmdParser.argv)
|
|
.catch(() => {
|
|
process.exit(1)
|
|
})
|
|
}
|