From 0f3c71a82762a6efee703e43b1156e99273fb4ec Mon Sep 17 00:00:00 2001 From: btea <2356281422@qq.com> Date: Thu, 18 Jun 2026 16:24:10 +0800 Subject: [PATCH] fix(docs): correct docs:dev script filter from 'docs' to 'npmx-docs' The package name in `docs/package.json` is `npmx-docs`, so `--filter docs` was not matching. Changed to `--filter npmx-docs` so `pnpm docs:dev` correctly launches the docs site dev server. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 530944dd07..54abb25d9c 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,8 @@ "start:playwright:webserver": "TEST=1 vp run preview --port 5678", "storybook": "STORYBOOK=true storybook dev -p 6006", "build-storybook": "STORYBOOK=true storybook build", - "chromatic": "chromatic" + "chromatic": "chromatic", + "docs:dev": "vp run --filter npmx-docs dev" }, "dependencies": { "@atcute/bluesky-richtext-segmenter": "3.0.0",