Skip to content

Commit 5a95284

Browse files
committed
migrate from @fp-ts/data to @effect/data
1 parent 26a1cfb commit 5a95284

23 files changed

+205
-230
lines changed

.changeset/tricky-dogs-laugh.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@effect/query": patch
3+
---
4+
5+
migrate from @fp-ts/data to @effect/data

examples/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1+
import * as Chunk from "@effect/data/Chunk"
2+
import * as HashSet from "@effect/data/HashSet"
13
import * as Effect from "@effect/io/Effect"
24
import * as DataSource from "@effect/query/DataSource"
35
import * as Query from "@effect/query/Query"
46
import * as Request from "@effect/query/Request"
57
import * as Either from "@fp-ts/core/Either"
68
import { pipe } from "@fp-ts/core/Function"
79
import * as ReadonlyArray from "@fp-ts/core/ReadonlyArray"
8-
import * as Chunk from "@fp-ts/data/Chunk"
9-
import * as HashSet from "@fp-ts/data/HashSet"
1010

1111
export const userIds: ReadonlyArray<number> = ReadonlyArray.range(1, 26)
1212

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
}
4646
},
4747
"dependencies": {
48-
"@effect/io": "~0.1.4",
49-
"@fp-ts/core": "~0.1.1",
50-
"@fp-ts/data": "~0.1.1"
48+
"@effect/data": "~0.0.1",
49+
"@effect/io": "~0.1.10",
50+
"@fp-ts/core": "~0.1.1"
5151
},
5252
"devDependencies": {
5353
"@babel/cli": "^7.20.7",
@@ -59,21 +59,21 @@
5959
"@effect-ts/core": "^0.60.5",
6060
"@effect/babel-plugin": "^0.1.0",
6161
"@effect/core": "^0.0.16",
62-
"@effect/language-service": "^0.0.17",
62+
"@effect/language-service": "^0.0.19",
6363
"@effect/vite-plugin": "^0.0.1",
6464
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
6565
"@rollup/pluginutils": "^5.0.2",
6666
"@types/benchmark": "^2.1.2",
6767
"@types/chai": "^4.3.4",
6868
"@types/glob": "^8.0.1",
6969
"@types/jest": "^29.4.0",
70-
"@types/node": "^18.11.18",
70+
"@types/node": "^18.11.19",
7171
"@types/prettier": "2.7.2",
7272
"@types/rimraf": "^3.0.2",
73-
"@typescript-eslint/eslint-plugin": "^5.50.0",
74-
"@typescript-eslint/parser": "^5.50.0",
75-
"@vitejs/plugin-react": "^3.0.1",
76-
"@vitest/coverage-c8": "^0.28.3",
73+
"@typescript-eslint/eslint-plugin": "^5.51.0",
74+
"@typescript-eslint/parser": "^5.51.0",
75+
"@vitejs/plugin-react": "^3.1.0",
76+
"@vitest/coverage-c8": "^0.28.4",
7777
"babel-plugin-annotate-pure-calls": "^0.4.0",
7878
"concurrently": "^7.6.0",
7979
"cpx": "^1.5.0",
@@ -96,8 +96,8 @@
9696
"tslint": "^6.1.3",
9797
"typescript": "^4.9.5",
9898
"ultra-runner": "^3.10.5",
99-
"vite": "^4.0.4",
100-
"vitest": "0.28.3"
99+
"vite": "^4.1.1",
100+
"vitest": "0.28.4"
101101
},
102102
"pnpm": {
103103
"patchedDependencies": {

0 commit comments

Comments
 (0)