semantic-release-expo
Version:
An Expo implementation for semantic release, so you don't have to bother
9 lines (8 loc) • 325 B
TypeScript
import { SemanticMethod } from '../types';
/**
* Prepare the new release by updating all manifests.
* This should update at least the `version` using the next release version name.
* It should also update the version code and build number when available.
*/
declare const prepare: SemanticMethod;
export default prepare;