Fix postinstall

This commit is contained in:
Steve Ruiz 2022-09-08 14:56:24 +01:00
parent 5e24e5a4cb
commit 13898f871d
2 changed files with 2 additions and 3 deletions

View file

@ -1,7 +1,6 @@
import { LiveMap } from '@liveblocks/client'
import type { TDAsset, TDBinding, TDShape, TDUser, TldrawApp } from '@tldraw/tldraw'
import type { TDUser, TldrawApp } from '@tldraw/tldraw'
import React, { useCallback, useRef, useState } from 'react'
import { useHotkeys } from 'react-hotkeys-hook'
import { Storage, useRedo, useRoom, useUndo, useUpdateMyPresence } from '~utils/liveblocks'
declare const window: Window & { app: TldrawApp }

View file

@ -37,7 +37,7 @@
"format": "prettier --write .",
"lint": "turbo run lint --parallel",
"clean": "turbo run clean",
"postinstall": "husky install & yarn build",
"postinstall": "husky install",
"pre-commit": "lint-staged",
"pre-push": "yarn test"
},