Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed May 1, 2024
1 parent abf5ec3 commit 5116f6a
Show file tree
Hide file tree
Showing 7 changed files with 4,247 additions and 3,657 deletions.
7 changes: 7 additions & 0 deletions .changeset/hungry-gorillas-smash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@effect-rx/rx-react": patch
"@effect-rx/rx-vue": patch
"@effect-rx/rx": patch
---

update dependencies
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"lint-fix": "pnpm lint --fix"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/plugin-transform-export-namespace-from": "^7.24.1",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@changesets/changelog-github": "^0.5.0",
Expand All @@ -28,9 +28,9 @@
"@effect/docgen": "^0.4.3",
"@effect/eslint-plugin": "^0.1.2",
"@effect/language-service": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/coverage-v8": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitest/coverage-v8": "^1.5.3",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
Expand All @@ -39,12 +39,12 @@
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"fast-check": "^3.17.2",
"fast-check": "^3.18.0",
"glob": "^10.3.12",
"madge": "^7.0.0",
"prettier": "^3.2.5",
"tsx": "^4.7.2",
"tsx": "^4.8.2",
"typescript": "^5.4.5",
"vitest": "^1.5.1"
"vitest": "^1.5.3"
}
}
6 changes: 3 additions & 3 deletions packages/rx-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@types/react": "^18.2.79",
"effect": "^3.0.5",
"react": "^18.2.0"
"@types/react": "^18.3.1",
"effect": "^3.1.1",
"react": "^18.3.1"
},
"peerDependencies": {
"effect": "^3.0.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/rx-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"effect": "^3.0.5",
"vue": "^3.4.25"
"effect": "^3.1.1",
"vue": "^3.4.26"
},
"peerDependencies": {
"effect": "^3.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/rx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"effect": "^3.0.5"
"effect": "^3.1.1"
},
"peerDependencies": {
"effect": "^3.0.5"
Expand Down
4 changes: 2 additions & 2 deletions packages/rx/test/Rx.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe("Rx", () => {
Effect.gen(function*() {
const counter = yield* Counter
const multiplier = yield* Multiplier
yield counter.inc
yield* counter.inc
expect(yield* get.result(count)).toEqual(2)
return yield* multiplier.times(2)
})
Expand Down Expand Up @@ -835,7 +835,7 @@ const CounterLive = Layer.effect(
Counter,
Effect.gen(function*() {
const buildCounter = yield* BuildCounter
yield buildCounter.inc
yield* buildCounter.inc
let count = 1
return Counter.of({
get: Effect.sync(() => count),
Expand Down
Loading

0 comments on commit 5116f6a

Please sign in to comment.