Skip to content

Commit

Permalink
fix: docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaellis authored Apr 7, 2023
1 parent bc3ce76 commit f697f0c
Show file tree
Hide file tree
Showing 5 changed files with 659 additions and 154 deletions.
8 changes: 4 additions & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
"@radix-ui/react-tooltip": "^1.0.4",
"@react-spring/rafz": "workspace:^",
"@react-spring/web": "9.7.1",
"@remix-run/node": "^1.12.0",
"@remix-run/react": "^1.12.0",
"@remix-run/vercel": "^1.12.0",
"@remix-run/node": "^1.15.0",
"@remix-run/react": "^1.15.0",
"@remix-run/vercel": "^1.15.0",
"@stitches/react": "^1.2.8",
"@supabase/supabase-js": "^2.10.0",
"@use-gesture/react": "^10.2.24",
"@vercel/node": "^2.9.10",
"@vercel/node": "^2.10.2",
"gray-matter": "^4.0.3",
"hast-util-to-html": "7.1.3",
"jotai": "^2.0.3",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@react-three/fiber": "^8.11.9",
"@remix-run/dev": "patch:@remix-run/dev@npm%3A1.12.0#./.yarn/patches/@remix-run-dev-npm-1.12.0-4cb56cd8f7.patch",
"@remix-run/serve": "1.12.0",
"@remix-run/dev": "patch:@remix-run/dev@npm%3A1.15.0#./.yarn/patches/@remix-run-dev-npm-1.15.0-33b55fa3ee.patch",
"@remix-run/serve": "^1.15.0",
"@swc/core": "^1.3.41",
"@swc/jest": "^0.2.24",
"@testing-library/cypress": "^8.0.7",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/src/types/objects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ export interface AnimationResult<T extends Readable = any> {
export type AsyncResult<T extends Readable = any> = Promise<AnimationResult<T>>

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

/**
* The set of `SpringValue` objects returned by a `useSpring` call (or similar).
Expand Down
Loading

1 comment on commit f697f0c

@vercel
Copy link

@vercel vercel bot commented on f697f0c Apr 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.