chore: rc3

This commit is contained in:
BluJ
2023-04-27 14:57:40 -06:00
parent 1b7531e82c
commit 38eccbaf44
4 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ export type Save<WD, A, Manifest extends GenericManifest> = (options: {
export type Read<WD, A> = (options: {
effects: Effects
utils: Utils<WD>
}) => Promise<void | DeepPartial<A>>
}) => Promise<void | A>
/**
* We want to setup a config export with a get and set, this
* is going to be the default helper to setup config, because it will help

View File

@@ -4,7 +4,7 @@ const starSub = /((\d+\.)*\d+)\.\*/
// prettier-ignore
export type ValidEmVer = `${number}${`.${number}` | ""}${`.${number}` | ""}${`-${string}` | ""}`;
// prettier-ignore
export type ValidEmVerRange = `${'>=' | '<='| '<' | '>' | ''}${number | '*'}${`.${number | '*'}` | ""}${`.${number | '*'}` | ""}${`-${string}` | ""}`;
export type ValidEmVerRange = `${'>=' | '<='| '<' | '>' | ''}${'^' | '~' | ''}${number | '*'}${`.${number | '*'}` | ""}${`.${number | '*'}` | ""}${`-${string}` | ""}`;
function incrementLastNumber(list: number[]) {
const newList = [...list]