@@ -313,9 +313,9 @@ deno publish
313313
314314#### Excluding a workspace member from publish
315315
316- Workspaces often contain members that are not meant to be published — internal
317- helpers, examples, or packages that only exist to host shared ` tasks ` . By
318- default ` deno publish ` will try to publish every workspace member that has a
316+ Workspaces often contain members that are not meant to be published, such as
317+ internal helpers, examples, or packages that only exist to host shared ` tasks ` .
318+ By default ` deno publish ` will try to publish every workspace member that has a
319319` name ` and ` exports ` , and will error if any of them is missing a ` version ` .
320320
321321To opt a member out of ` deno publish ` , set ` "publish": false ` in that member's
@@ -331,8 +331,8 @@ To opt a member out of `deno publish`, set `"publish": false` in that member's
331331}
332332```
333333
334- The member is still part of the workspace — its ` tasks ` run, its ` imports ` are
335- resolved, and other members can depend on it — but ` deno publish ` skips it
334+ The member is still part of the workspace. Its ` tasks ` run, its ` imports ` are
335+ resolved, and other members can depend on it, but ` deno publish ` skips it
336336entirely and won't complain about a missing ` version ` .
337337
338338This applies to ` deno.json ` members only. Workspace members defined solely by a
0 commit comments