Skip to content

Commit

Permalink
Merge branch 'dev' into markdalgleish/vite-6-support
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish committed Dec 19, 2024
2 parents 3da8cfd + cbabd67 commit 4f83dcb
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions packages/remix-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"dependencies": {
"@remix-run/router": "1.21.0",
"@remix-run/server-runtime": "workspace:*",
"react-router": "6.28.0",
"react-router-dom": "6.28.0",
"react-router": "6.28.1-pre.0",
"react-router-dom": "6.28.1-pre.0",
"turbo-stream": "2.4.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/remix-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@remix-run/node": "workspace:*",
"@remix-run/react": "workspace:*",
"@remix-run/router": "1.21.0",
"react-router-dom": "6.28.0"
"react-router-dom": "6.28.1-pre.0"
},
"devDependencies": {
"@remix-run/server-runtime": "workspace:*",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions scripts/bump-router-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@ fi
set -x

cd packages/remix-dev
pnpm add -E @remix-run/router@${ROUTER_VERSION}
npx pnpm@8 add -E @remix-run/router@${ROUTER_VERSION}
cd ../..

cd packages/remix-server-runtime
pnpm add -E @remix-run/router@${ROUTER_VERSION}
npx pnpm@8 add -E @remix-run/router@${ROUTER_VERSION}
cd ../..

cd packages/remix-react
pnpm add -E @remix-run/router@${ROUTER_VERSION} react-router@${RR_VERSION} react-router-dom@${RR_VERSION}
npx pnpm@8 add -E @remix-run/router@${ROUTER_VERSION} react-router@${RR_VERSION} react-router-dom@${RR_VERSION}
cd ../..

cd packages/remix-testing
pnpm add -E @remix-run/router@${ROUTER_VERSION} react-router-dom@${RR_VERSION}
npx pnpm@8 add -E @remix-run/router@${ROUTER_VERSION} react-router-dom@${RR_VERSION}
cd ../..

cd integration
pnpm add -E @remix-run/router@${ROUTER_VERSION}
npx pnpm@8 add -E @remix-run/router@${ROUTER_VERSION}
cd ..

# Because deplicates...
pnpm dedupe && rm -rf ./node_modules && pnpm install
npx pnpm@8 dedupe && rm -rf ./node_modules && npx pnpm@8 install

set +x

0 comments on commit 4f83dcb

Please sign in to comment.