@lamantin/fastpush
Version:
Typed fastlane frontend for pushing builds to store
12 lines (9 loc) • 324 B
text/typescript
import { ui } from '../ui'
import { fastpush } from './fastpush'
import { publish } from '../publish'
const parsedOptions = fastpush(process.argv)
publish(parsedOptions).catch(e => {
ui.error('Unhandler error: ' + e)
ui.error('Open issue: https://github.com/lamantin-group/fastpush/issues/new')
})