Skip to content

Commit

Permalink
chore: remove build -b parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
TinsFox committed Nov 29, 2024
1 parent ecd2817 commit 8f5868b
Show file tree
Hide file tree
Showing 5 changed files with 222 additions and 3,510 deletions.
3 changes: 0 additions & 3 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,5 @@
"scripts": {
"dev": "mintlify dev --port 3004",
"lint": "mintlify broken-links"
},
"dependencies": {
"mintlify": "^4.0.278"
}
}
4 changes: 3 additions & 1 deletion packages/pro-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"./pro-table": "./src/components/pro-table/index.tsx"
},
"scripts": {
"build": "tsc -b && vite build -d",
"build": "tsc && vite build -d",
"build-storybook": "storybook build",
"dev": "vite",
"lint": "eslint .",
Expand All @@ -19,11 +19,13 @@
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-icons": "^1.3.2",
"@repo/ui": "workspace:^",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-table": "^8.20.5",
"lucide-react": "^0.429.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion packages/pro-components/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import "./index.css"
import "@repo/ui/globals.css"

import { StrictMode } from "react"
Expand Down
5 changes: 4 additions & 1 deletion packages/pro-components/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ import { defineConfig } from "vite"
import tsconfigPaths from "vite-tsconfig-paths"

export default defineConfig({
plugins: [react(), tsconfigPaths()],
plugins: [
tsconfigPaths(),
react(),
],
})
Loading

0 comments on commit 8f5868b

Please sign in to comment.