UNPKG

rivet

Version:

Suite of utilities for working with the Rivet consumer-driven API contacts testing model.

11 lines (9 loc) 290 B
import runCommand from '../runCommand'; import { log } from '../../lib/log'; import versionHandler from './version'; import { IHandlerArgs } from './types'; export default (argv: IHandlerArgs): void => { versionHandler(argv); log('Publishing package'); runCommand('npm publish'); };