Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: dev:docs script not working #5987

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"clear": "docusaurus clear",
"deploy": "docusaurus deploy",
"dev": "docusaurus start",
"dev:blog": "DISABLE_DOCS=true LIVE_PREVIEW_URL=https://next.live-previews.refine.dev/preview npm run dev:lean",
"dev:docs": "DISABLE_BLOG=true npm run dev:lean",
"dev:lean": "DISABLE_DOCGEN=true DISABLE_VERSIONING=true DISABLE_EXAMPLES=true DISABLE_CHECKLISTS=true npm run dev",
"dev:blog": "DISABLE_DOCS=true LIVE_PREVIEW_URL=https://next.live-previews.refine.dev/preview pnpm run dev:lean",
"dev:docs": "DISABLE_BLOG=true pnpm run dev:lean",
"dev:lean": "DISABLE_DOCGEN=true DISABLE_VERSIONING=true DISABLE_EXAMPLES=true DISABLE_CHECKLISTS=true pnpm run dev",
"docusaurus": "docusaurus",
"serve": "docusaurus serve",
"swizzle": "docusaurus swizzle",
Expand Down Expand Up @@ -101,6 +101,6 @@
"packageManager": "pnpm@9.1.2+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7",
"engines": {
"node": ">=18",
"pnpm": ">= 9"
"pnpm": ">=9"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"changeset": "changeset",
"coffee": "pnpm nuke && pnpm i && pnpm build:all",
"dev": "lerna run dev",
"dev:docs": "concurrently \"cd documentation && pnpm dev\" \"pnpm dev -- --scope @refinedev/live-previews\" --names docs,live --prefix-colors blue,red",
"dev:docs": "concurrently \"cd documentation && pnpm dev\" \"pnpm dev --scope @refinedev/live-previews\" --names docs,live --prefix-colors blue,red",
"lerna": "lerna",
"lint": "biome check .",
"lint:ci": "biome ci .",
Expand Down
Loading