Skip to content

Commit

Permalink
Effect 2.1.2 and Schema 0.60.6
Browse files Browse the repository at this point in the history
  • Loading branch information
steida committed Jan 19, 2024
1 parent 047ff4e commit b9e549a
Show file tree
Hide file tree
Showing 14 changed files with 317 additions and 416 deletions.
10 changes: 10 additions & 0 deletions .changeset/five-beers-impress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"@evolu/common-react": patch
"@evolu/react-native": patch
"@evolu/common-web": patch
"@evolu/common": patch
"@evolu/server": patch
"@evolu/react": patch
---

Effect 2.1.2 and Schema 0.60.6
6 changes: 3 additions & 3 deletions apps/native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"clean": "rm -rf .turbo .expo node_modules dist"
},
"dependencies": {
"@effect/schema": "^0.60.3",
"@effect/schema": "^0.60.6",
"@evolu/react-native": "workspace:*",
"@react-native-community/netinfo": "9.3.10",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"effect": "2.1.0",
"effect": "2.1.2",
"events": "^3.3.0",
"expo": "^49.0.21",
"expo-sqlite": "~11.3.3",
Expand All @@ -35,7 +35,7 @@
"@types/react": "^18.2.48",
"eslint": "^8.56.0",
"eslint-config-evolu": "workspace:*",
"prettier": "^3.2.2",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"devDependencies": {
"@evolu/tsconfig": "workspace:*",
"@types/node": "^20.11.4",
"@types/node": "^20.11.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
Expand Down
12 changes: 6 additions & 6 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@
"clean": "rm -rf .turbo .next node_modules"
},
"dependencies": {
"@effect/schema": "^0.60.3",
"@effect/schema": "^0.60.6",
"@evolu/common": "workspace:*",
"@evolu/react": "workspace:*",
"clsx": "^2.1.0",
"effect": "2.1.0",
"next": "14.0.4",
"effect": "2.1.2",
"next": "14.1.0",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@evolu/tsconfig": "workspace:*",
"@types/node": "^20.11.4",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-evolu": "workspace:*",
"postcss": "^8.4.32",
"prettier": "^3.2.2",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.10",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3"
Expand Down
11 changes: 3 additions & 8 deletions apps/web/pages/docs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
# Evolu

Evolu is a library for local-first apps, so the question should be,
why local-first apps?

## Why local-first apps?
# Why Local-First Apps?

Local-first apps allow users to own their data. Evolu stores data in the user's
device(s), so Evolu apps can work offline and without a specific server.
Expand All @@ -12,7 +7,7 @@ How is it different from keeping files on disk? Files are not the right abstract
for apps and are complicated to synchronize among devices. That's why client-server
architecture rules the world. But as with everything, it has trade-offs.

### The trade-offs of the client-server architecture
## The Trade-Offs of the Client-Server Architecture

Client-server architecture provides us with easy backup and synchronization,
but all that depends on the ability of a server to fulfill its promises.
Expand All @@ -22,7 +17,7 @@ the world needs local-first apps. But until now, writing local-first apps
has been challenging because of the lack of libraries and design patterns.
That's why I created Evolu.

## What does local-first mean to Evolu?
# What Does Local-First Mean to Evolu?

Local-first is becoming a broad term for various strategies, an umbrella term, so let me explain what local-first means for Evolu:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@changesets/cli": "^2.27.1",
"eslint": "^8.56.0",
"eslint-config-evolu": "workspace:*",
"prettier": "^3.2.2",
"prettier": "^3.2.4",
"prettier-plugin-jsdoc": "^1.3.0",
"turbo": "^1.11.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-evolu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint-config-next": "14.0.4",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.11.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-node": "^11.1.0",
"next": "14.0.4",
"next": "14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-common-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"eslint-config-evolu": "workspace:*",
"react": "^18.2.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
"vitest": "^1.2.1"
},
"peerDependencies": {
"@evolu/common": "^3.0.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-common-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"eslint-config-evolu": "workspace:*",
"typescript": "^5.3.3",
"user-agent-data-types": "^0.4.2",
"vitest": "^1.2.0"
"vitest": "^1.2.1"
},
"peerDependencies": {
"@evolu/common": "^3.0.11",
Expand Down
10 changes: 5 additions & 5 deletions packages/evolu-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,20 +61,20 @@
"nanoid": "^5.0.4"
},
"devDependencies": {
"@effect/schema": "^0.60.3",
"@effect/schema": "^0.60.6",
"@evolu/tsconfig": "workspace:*",
"@protobuf-ts/plugin": "^2.9.3",
"@protobuf-ts/protoc": "^2.9.3",
"array-shuffle": "^3.0.0",
"effect": "2.1.0",
"effect": "2.1.2",
"eslint": "^8.56.0",
"eslint-config-evolu": "workspace:*",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
"vitest": "^1.2.1"
},
"peerDependencies": {
"@effect/schema": "^0.60.3",
"effect": "2.1.0"
"@effect/schema": "^0.60.6",
"effect": "2.1.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"expo-sqlite": "~11.3.3",
"react-native": "0.72.6",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
"vitest": "^1.2.1"
},
"peerDependencies": {
"@evolu/common-react": "^4.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"eslint-config-evolu": "workspace:*",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
"vitest": "^1.2.1"
},
"peerDependencies": {
"@evolu/common": "^3.0.11",
Expand Down
8 changes: 4 additions & 4 deletions packages/evolu-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
},
"dependencies": {
"@evolu/common": "workspace:*",
"better-sqlite3": "^9.2.2",
"better-sqlite3": "^9.3.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"effect": "2.1.0",
"effect": "2.1.2",
"express": "^4.18.2",
"kysely": "^0.27.0"
},
Expand All @@ -41,11 +41,11 @@
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.4",
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"eslint-config-evolu": "workspace:*",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
"vitest": "^1.2.1"
},
"peerDependencies": {
"@evolu/common": "^3.0.11"
Expand Down
Loading

1 comment on commit b9e549a

@vercel
Copy link

@vercel vercel bot commented on b9e549a Jan 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

evolu – ./

evolu.vercel.app
evolu-git-main-evolu.vercel.app
evolu-evolu.vercel.app
www.evolu.dev
evolu.dev

Please sign in to comment.