export function releaseTask()

in packages/web-scripts/src/Tasks/CommitTasks.ts [155:160]


export function releaseTask(task: ReleaseTaskDesc): SpawnSyncReturns<Buffer> {
  const cmd = 'npx';
  const args = ['--no-install', 'semantic-release', ...task.restOptions];
  dbg('npx args %o', args);
  return spawn.sync(cmd, args, { stdio: 'inherit' });
}