From f1fc4bdb74940d1c6eb3b1b0ee10308e7937045a Mon Sep 17 00:00:00 2001 From: Joshua Byrd Date: Fri, 3 Feb 2023 09:13:12 +1000 Subject: [PATCH] needs this -- to actually pass the flag (#3487) Co-authored-by: Chris Olszewski --- docs/pages/repo/docs/handbook/publishing-packages/bundling.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/repo/docs/handbook/publishing-packages/bundling.mdx b/docs/pages/repo/docs/handbook/publishing-packages/bundling.mdx index 89bdb46cd7b48..df3d5c7234b20 100644 --- a/docs/pages/repo/docs/handbook/publishing-packages/bundling.mdx +++ b/docs/pages/repo/docs/handbook/publishing-packages/bundling.mdx @@ -113,7 +113,7 @@ That's because we don't have a `dev` script to rebuild our packages while we're { "scripts": { "build": "tsup src/index.ts --format cjs --dts", - "dev": "npm run build --watch" + "dev": "npm run build -- --watch" } } ```