-
-
Notifications
You must be signed in to change notification settings - Fork 798
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: scroll-restoration (especially on hydration mismatch) * fix: more fixes * fix canGoBack * release: v1.97.25 * chore(root): upgrade `vitest` to `3.0.4` (#3257) * chore(root): upgrade `nx` to `20.4.0` (#3259) * fix(react-router): improve error handling for module loading failures in lazyRouteComponent (#3262) Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * fix(start-server): remove debugging timeout (#3258) * fix(start-plugin): invoke server implementation of createIsomorphicFn during SSR (#3268) * feat(react-router): add `remountDeps` (#3269) * fix: RELEASE_ALL RELEASE_ALL * examples: remove dep (#3270) * release: v1.98.0 * checkpoint * fix tests * tests: fix * fix: back to old onRendered * fix: scroll-restoration (especially on hydration mismatch) * fix: more fixes * fix canGoBack * checkpoint * fix tests * tests: fix * fix: back to old onRendered * Move utils to core * fix: backwards compat ScrollRestoration * fix: better versioning * fix: reenable hash scrolling and window reset even without scroll restoration * test(e2e): renable tests for router * fix: backwards compat and docs --------- Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com> Co-authored-by: Tanner Linsley <tannerlinsley@users.noreply.github.com> Co-authored-by: Sean Cassiere <33615041+SeanCassiere@users.noreply.github.com> Co-authored-by: Flo <fpellet@ensc.fr> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Daniel Grant <1670902+djgrant@users.noreply.github.com>
- Loading branch information
1 parent
d5d65a2
commit fdaefc0
Showing
58 changed files
with
1,473 additions
and
445 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 0 additions & 48 deletions
48
e2e/react-router/basic-scroll-restoration/src/has-shown.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
node_modules | ||
package-lock.json | ||
yarn.lock | ||
|
||
.DS_Store | ||
.cache | ||
.env | ||
.vercel | ||
.output | ||
.vinxi | ||
|
||
/build/ | ||
/api/ | ||
/server/build | ||
/public/build | ||
.vinxi | ||
# Sentry Config File | ||
.env.sentry-build-plugin | ||
/test-results/ | ||
/playwright-report/ | ||
/blob-report/ | ||
/playwright/.cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
**/build | ||
**/public | ||
pnpm-lock.yaml | ||
routeTree.gen.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { defineConfig } from '@tanstack/start/config' | ||
import tsConfigPaths from 'vite-tsconfig-paths' | ||
|
||
export default defineConfig({ | ||
vite: { | ||
plugins: [ | ||
tsConfigPaths({ | ||
projects: ['./tsconfig.json'], | ||
}), | ||
], | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { | ||
createStartAPIHandler, | ||
defaultAPIFileRouteHandler, | ||
} from '@tanstack/start/api' | ||
|
||
export default createStartAPIHandler(defaultAPIFileRouteHandler) |
Oops, something went wrong.