UNPKG

423 BTypeScriptView Raw
1import { Rule } from '@angular-devkit/schematics';
2import { Schema as PostUpdateSchema } from './schema';
3/**
4 * Cleans up "short" version numbers so they become valid semver. For example;
5 * 1 => 1.0.0
6 * 1.2 => 1.2.0
7 * 1-beta => 1.0.0-beta
8 *
9 * Exported for testing only.
10 */
11export declare function _coerceVersionNumber(version: string): string | null;
12export default function (options: PostUpdateSchema): Rule;