Skip to content

Commit

Permalink
chore: latest svelte 5
Browse files Browse the repository at this point in the history
  • Loading branch information
danielo515 committed Jul 16, 2024
1 parent 8d8d393 commit 35a4f7b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"obsidian": "^1.4.11",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^5.0.0-next.175",
"svelte": "^5.0.0-next.184",
"svelte-check": "^3.8.4",
"svelte-preprocess": "^6.0.1",
"ts-jest": "^29.1.5",
Expand All @@ -48,4 +48,4 @@
"type-fest": "^4.6.0",
"valibot": "^0.19.0"
}
}
}
8 changes: 3 additions & 5 deletions src/std/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import * as A from "fp-ts/Array";
import type {
Either} from "fp-ts/Either";
import {
type Either,
ap,
Expand All @@ -20,14 +18,14 @@ import {
tryCatch,
tryCatchK,
} from "fp-ts/Either";
import type { NonEmptyArray} from "fp-ts/NonEmptyArray";
import type { NonEmptyArray } from "fp-ts/NonEmptyArray";
import { concatAll as concatAllNea } from "fp-ts/NonEmptyArray";
import type * as _O from "fp-ts/Option";
import type { Semigroup} from "fp-ts/Semigroup";
import type { Semigroup } from "fp-ts/Semigroup";
import { concatAll } from "fp-ts/Semigroup";
import * as TE from "fp-ts/TaskEither";
import { absurd as _absurd, flow as f, pipe as p } from "fp-ts/function";
import type { BaseSchema, Output, ValiError} from "valibot";
import type { BaseSchema, Output, ValiError } from "valibot";
import { parse as parseV } from "valibot";
export type Option<T> = _O.Option<T>;
export type { Either, Left, Right } from "fp-ts/Either";
Expand Down

0 comments on commit 35a4f7b

Please sign in to comment.