Skip to content

Commit f697f0c

Browse files
authored
fix: docs build
1 parent bc3ce76 commit f697f0c

File tree

5 files changed

+659
-154
lines changed

5 files changed

+659
-154
lines changed

docs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"@radix-ui/react-tooltip": "^1.0.4",
2525
"@react-spring/rafz": "workspace:^",
2626
"@react-spring/web": "9.7.1",
27-
"@remix-run/node": "^1.12.0",
28-
"@remix-run/react": "^1.12.0",
29-
"@remix-run/vercel": "^1.12.0",
27+
"@remix-run/node": "^1.15.0",
28+
"@remix-run/react": "^1.15.0",
29+
"@remix-run/vercel": "^1.15.0",
3030
"@stitches/react": "^1.2.8",
3131
"@supabase/supabase-js": "^2.10.0",
3232
"@use-gesture/react": "^10.2.24",
33-
"@vercel/node": "^2.9.10",
33+
"@vercel/node": "^2.10.2",
3434
"gray-matter": "^4.0.3",
3535
"hast-util-to-html": "7.1.3",
3636
"jotai": "^2.0.3",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
"@commitlint/cli": "^17.4.4",
6565
"@commitlint/config-conventional": "^17.4.4",
6666
"@react-three/fiber": "^8.11.9",
67-
"@remix-run/dev": "patch:@remix-run/dev@npm%3A1.12.0#./.yarn/patches/@remix-run-dev-npm-1.12.0-4cb56cd8f7.patch",
68-
"@remix-run/serve": "1.12.0",
67+
"@remix-run/dev": "patch:@remix-run/dev@npm%3A1.15.0#./.yarn/patches/@remix-run-dev-npm-1.15.0-33b55fa3ee.patch",
68+
"@remix-run/serve": "^1.15.0",
6969
"@swc/core": "^1.3.41",
7070
"@swc/jest": "^0.2.24",
7171
"@testing-library/cypress": "^8.0.7",

packages/core/src/types/objects.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ export interface AnimationResult<T extends Readable = any> {
2424
export type AsyncResult<T extends Readable = any> = Promise<AnimationResult<T>>
2525

2626
/** Map an object type to allow `SpringValue` for any property */
27-
export type Springify<T> = Lookup<SpringValue<unknown> | undefined> &
28-
{ [P in keyof T]: T[P] | SpringValue<T[P]> }
27+
export type Springify<T> = Lookup<SpringValue<unknown> | undefined> & {
28+
[P in keyof T]: T[P] | SpringValue<T[P]>
29+
}
2930

3031
/**
3132
* The set of `SpringValue` objects returned by a `useSpring` call (or similar).

0 commit comments

Comments
 (0)