Skip to content

Commit

Permalink
chore: use npm latest for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
needim committed Aug 9, 2024
1 parent 4a689f6 commit 99c5fd9
Show file tree
Hide file tree
Showing 8 changed files with 178 additions and 89 deletions.
2 changes: 1 addition & 1 deletion examples/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@evolu/react": "workspace:*",
"@evolu/react": "latest",
"next": "^14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/react-electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"typescript": "5.5.4"
},
"dependencies": {
"@evolu/react": "workspace:*",
"@evolu/react": "latest",
"@types/react-dom": "~18.3.0",
"electron-squirrel-startup": "1.0.1",
"react": "18.3.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-vite-pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@effect/schema": "^0.70.2",
"@evolu/react": "workspace:*",
"@evolu/react": "latest",
"effect": "^3.6.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-vite-pwa/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { VitePWA } from "vite-plugin-pwa";
// https://vitejs.dev/config/
export default defineConfig({
optimizeDeps: {
exclude: ["@evolu/common-web", "@sqlite.org/sqlite-wasm"],
exclude: ["@evolu/react", "@sqlite.org/sqlite-wasm"],
include: ["react-dom"],
},
worker: {
Expand Down
2 changes: 1 addition & 1 deletion examples/react-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@effect/schema": "^0.70.2",
"@evolu/react": "workspace:*",
"@evolu/react": "latest",
"effect": "^3.6.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/react-vite/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
optimizeDeps: {
exclude: ["@evolu/common-web", "@sqlite.org/sqlite-wasm"],
exclude: ["@evolu/react", "@sqlite.org/sqlite-wasm"],
include: ["react-dom"],
},
worker: { format: "es" },
Expand Down
8 changes: 4 additions & 4 deletions examples/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
},
"dependencies": {
"@effect/schema": "^0.70.2",
"@evolu/common": "workspace:*",
"@evolu/common-web": "workspace:*",
"@evolu/react": "workspace:*",
"@evolu/server": "workspace:*",
"@evolu/common": "latest",
"@evolu/common-web": "latest",
"@evolu/react": "latest",
"@evolu/server": "latest",
"@remix-run/node": "^2.11.1",
"@remix-run/react": "^2.11.1",
"@remix-run/serve": "^2.11.1",
Expand Down
247 changes: 168 additions & 79 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

0 comments on commit 99c5fd9

Please sign in to comment.