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: { export type Read<WD, A> = (options: {
effects: Effects effects: Effects
utils: Utils<WD> utils: Utils<WD>
}) => Promise<void | DeepPartial<A>> }) => Promise<void | A>
/** /**
* We want to setup a config export with a get and set, this * 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 * 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 // prettier-ignore
export type ValidEmVer = `${number}${`.${number}` | ""}${`.${number}` | ""}${`-${string}` | ""}`; export type ValidEmVer = `${number}${`.${number}` | ""}${`.${number}` | ""}${`-${string}` | ""}`;
// prettier-ignore // prettier-ignore
export type ValidEmVerRange = `${'>=' | '<='| '<' | '>' | ''}${number | '*'}${`.${number | '*'}` | ""}${`.${number | '*'}` | ""}${`-${string}` | ""}`; export type ValidEmVerRange = `${'>=' | '<='| '<' | '>' | ''}${'^' | '~' | ''}${number | '*'}${`.${number | '*'}` | ""}${`.${number | '*'}` | ""}${`-${string}` | ""}`;
function incrementLastNumber(list: number[]) { function incrementLastNumber(list: number[]) {
const newList = [...list] const newList = [...list]

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "start-sdk", "name": "start-sdk",
"version": "0.4.0-lib0.rc2", "version": "0.4.0-lib0.rc3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "start-sdk", "name": "start-sdk",
"version": "0.4.0-lib0.rc2", "version": "0.4.0-lib0.rc3",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@iarna/toml": "^2.2.5", "@iarna/toml": "^2.2.5",

View File

@@ -1,6 +1,6 @@
{ {
"name": "start-sdk", "name": "start-sdk",
"version": "0.4.0-lib0.rc2", "version": "0.4.0-lib0.rc3",
"description": "For making the patterns that are wanted in making services for the startOS.", "description": "For making the patterns that are wanted in making services for the startOS.",
"main": "./lib/index.js", "main": "./lib/index.js",
"types": "./lib/index.d.ts", "types": "./lib/index.d.ts",