Skip to content

Commit

Permalink
Update remix monorepo to v2.15.2 (#1872)
Browse files Browse the repository at this point in the history
* Update remix monorepo to v2.15.2

* Update target to ES2023

* Add types recommended by Remix docs

* Enable v3_fetcherPersist

* Enable v3_relativeSplatPath

* Enable v3_throwAbortReason

* Enable v3_lazyRouteDiscovery

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Stephen Wade <[email protected]>
  • Loading branch information
renovate[bot] and stephenwade authored Jan 15, 2025
1 parent 0b1489a commit cc54344
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 189 deletions.
222 changes: 41 additions & 181 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"@azure/storage-blob": "12.26.0",
"@clerk/remix": "4.4.9",
"@prisma/client": "5.22.0",
"@remix-run/node": "2.14.0",
"@remix-run/react": "2.14.0",
"@remix-run/serve": "2.14.0",
"@remix-run/node": "2.15.2",
"@remix-run/react": "2.15.2",
"@remix-run/serve": "2.15.2",
"@remix-validated-form/with-zod": "2.0.7",
"date-fns": "3.6.0",
"nanoid": "5.0.9",
Expand All @@ -57,8 +57,8 @@
"@eslint/js": "9.18.0",
"@playwright/experimental-ct-react": "1.49.1",
"@playwright/test": "1.49.1",
"@remix-run/dev": "2.14.0",
"@remix-run/testing": "2.14.0",
"@remix-run/dev": "2.15.2",
"@remix-run/testing": "2.15.2",
"@types/eslint__js": "8.42.3",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint-plugin-jsx-a11y": "6.10.0",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
"include": ["env.d.ts", ".eslintrc.cjs", "**/*.js", "**/*.ts", "**/*.tsx"],
"exclude": ["build"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"types": ["@remix-run/node", "vite/client"],
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"target": "ES2020",
"target": "ES2023",
"strict": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
Expand Down
Loading

0 comments on commit cc54344

Please sign in to comment.