Skip to content

Commit 69bb8e0

Browse files
committed
chore: refactor effect schema
1 parent 5888412 commit 69bb8e0

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

bun.lockb

-752 Bytes
Binary file not shown.

website/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"@auth/prisma-adapter": "2.7.4",
2121
"@biomejs/biome": "1.9.4",
2222
"@effect/platform": "0.69.28",
23-
"@effect/schema": "0.75.5",
2423
"@icons-pack/react-simple-icons": "10.2.0",
2524
"@pandacss/dev": "0.48.0",
2625
"@park-ui/panda-preset": "workspace:*",

website/src/app/actions.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
'use server'
2-
import { Schema } from '@effect/schema'
3-
import { Effect, Match, pipe } from 'effect'
2+
import { Effect, Match, Schema, pipe } from 'effect'
43
import { auth, signIn } from '~/lib/auth'
54
import { prisma } from '~/lib/prisma'
65

website/src/app/api/lemon/webhook/route.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import crypto from 'node:crypto'
2-
import { Schema } from '@effect/schema'
3-
import { Effect, Match, pipe } from 'effect'
2+
import { Effect, Match, Schema, pipe } from 'effect'
43
import type { NextRequest } from 'next/server'
54
import { prisma } from '~/lib/prisma'
65

website/src/lib/blocks.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { readFile } from 'node:fs/promises'
22
import { basename, join } from 'node:path'
3-
import { Schema } from '@effect/schema'
4-
import { Effect, pipe } from 'effect'
3+
import { Effect, Schema, pipe } from 'effect'
54
import { globby } from 'globby'
65
import { highlight } from '~/lib/shiki'
76

0 commit comments

Comments
 (0)