Skip to content

Commit

Permalink
Specify minimum remix version for devProxyVite plugin
Browse files Browse the repository at this point in the history
v2.12.1 includes remix-run/remix#9976, which changed the API contract of the fromNodeRequest util that we will depend on in superflareDevProxyVitePlugin
  • Loading branch information
acusti committed Nov 11, 2024
1 parent 335191e commit 82163e3
Show file tree
Hide file tree
Showing 5 changed files with 176 additions and 843 deletions.
10 changes: 5 additions & 5 deletions apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"@docsearch/react": "^3.6.1",
"@headlessui/react": "^2.1.2",
"@markdoc/markdoc": "0.4.0",
"@remix-run/cloudflare": "^2",
"@remix-run/react": "^2",
"@remix-run/server-runtime": "^2",
"@remix-run/cloudflare": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/server-runtime": "^2.12.1",
"@sindresorhus/slugify": "^2.1.1",
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10.4.19",
Expand All @@ -38,8 +38,8 @@
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241011.0",
"@remix-run/dev": "^2",
"@remix-run/eslint-config": "^2",
"@remix-run/dev": "^2.12.1",
"@remix-run/eslint-config": "^2.12.1",
"@types/js-yaml": "^4.0.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
Expand Down
10 changes: 5 additions & 5 deletions examples/remix-cms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"dependencies": {
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@remix-run/cloudflare": "^2",
"@remix-run/react": "^2",
"@remix-run/server-runtime": "^2",
"@remix-run/cloudflare": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/server-runtime": "^2.12.1",
"@remix-run/v1-route-convention": "^0.1.4",
"@superflare/remix": "workspace:*",
"@tailwindcss/forms": "^0.5.3",
Expand All @@ -39,8 +39,8 @@
"devDependencies": {
"@cloudflare/workers-types": "^4.20241011.0",
"@faker-js/faker": "^7.6.0",
"@remix-run/dev": "^2",
"@remix-run/eslint-config": "^2",
"@remix-run/dev": "^2.12.1",
"@remix-run/eslint-config": "^2.12.1",
"@tailwindcss/typography": "^0.5.9",
"@types/marked": "^4.0.8",
"@types/react": "^18.0.28",
Expand Down
12 changes: 6 additions & 6 deletions packages/superflare-remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20241011.0",
"@remix-run/cloudflare": "^2",
"@remix-run/dev": "^2",
"@remix-run/server-runtime": "^2",
"@remix-run/cloudflare": "^2.12.1",
"@remix-run/dev": "^2.12.1",
"@remix-run/server-runtime": "^2.12.1",
"tsconfig": "workspace:*",
"tsup": "^6.6.3",
"typescript": "^5",
"vite": "^5",
"wrangler": "^3.80"
},
"peerDependencies": {
"@remix-run/cloudflare": "^2",
"@remix-run/dev": "^2",
"@remix-run/server-runtime": "^2",
"@remix-run/cloudflare": "^2.12.1",
"@remix-run/dev": "^2.12.1",
"@remix-run/server-runtime": "^2.12.1",
"wrangler": "^3.80"
},
"dependencies": {
Expand Down
Loading

0 comments on commit 82163e3

Please sign in to comment.