Skip to content

Commit 5cdcc94

Browse files
effect v3.10
1 parent 9866be2 commit 5cdcc94

File tree

5 files changed

+19
-34
lines changed

5 files changed

+19
-34
lines changed

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
"vitest": "^2.0.2"
1818
},
1919
"dependencies": {
20-
"@effect/platform": "^0.68.1",
21-
"@effect/schema": "^0.75.2",
22-
"effect": "^3.9.1"
20+
"@effect/platform": "^0.69.2",
21+
"effect": "^3.10.0"
2322
}
2423
}

pnpm-lock.yaml

Lines changed: 14 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/+1/encoding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Schema } from "@effect/schema";
1+
import { Schema } from "effect";
22

33
const Author = Schema.Struct({
44
name: Schema.String,

src/PokeApi.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Schema } from "@effect/schema";
2-
import { Effect } from "effect";
1+
import { Effect, Schema } from "effect";
32
import { BuildPokeApiUrl } from "./BuildPokeApiUrl";
43
import { FetchError, JsonError } from "./errors";
54
import { PokemonCollection } from "./PokemonCollection";

src/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Schema } from "@effect/schema";
1+
import { Schema } from "effect";
22

33
export class Pokemon extends Schema.Class<Pokemon>("Pokemon")({
44
id: Schema.Number,

0 commit comments

Comments
 (0)