Skip to content

Commit

Permalink
fix: pnpm dev
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjavi committed Aug 4, 2023
1 parent d4abcbf commit b9274f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": "turbo run build",
"changelog": "changeset",
"changeset": "changeset",
"dev": "pnpm install && turbo run dev --no-deps --no-cache --parallel --concurrency 15",
"dev": "pnpm install && pnpm build && turbo run dev --no-deps --no-cache --parallel --concurrency 15",
"format": "pnpm format:packages && pnpm format:code && pnpm lint:fix",
"format:code": "prettier --write \"**/*.{cjs,js,jsx,ts,tsx,json,yml,yaml,css,scss,md,mdx}\"",
"format:packages": "sort-package-json \"package.json\" \"packages/*/package.json\"",
Expand Down
1 change: 0 additions & 1 deletion packages/storylite/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ lerna-debug.log*

node_modules
dist
types/
dist-ssr
*.local

Expand Down
4 changes: 2 additions & 2 deletions packages/storylite/src/components/addons/GridAddon.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import './GridAddon.css'
import { Grid } from 'lucide-react'
import React, { useEffect } from 'react'
import { useEffect } from 'react'
import { useBrowserStorage } from '@storylite/support/dist/react'
import { ElementIds } from '@/types'
import ToolbarBtn from '../ToolbarBtn'
import './GridAddon.css'

export default function GridAddon() {
const { value: addonValue, setValue: setAddonValue } = useBrowserStorage<{ enabled: boolean }>(
Expand Down

0 comments on commit b9274f3

Please sign in to comment.