Skip to content

Commit 6a0ed1b

Browse files
committed
docs: drop em dashes
1 parent 91adac6 commit 6a0ed1b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

runtime/fundamentals/workspaces.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

321321
To 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
336336
entirely and won't complain about a missing `version`.
337337

338338
This applies to `deno.json` members only. Workspace members defined solely by a

runtime/reference/cli/publish.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Before you publish your package, you must create it in the registry by visiting
4040

4141
When run inside a [workspace](/runtime/fundamentals/workspaces/), `deno publish`
4242
tries to publish every member that has a `name` and `exports`, and errors if any
43-
of them is missing a `version`. To opt a member out for example an internal
44-
helper package that only exists to host shared `tasks` set `"publish": false`
43+
of them is missing a `version`. To opt a member out, for example an internal
44+
helper package that only exists to host shared `tasks`, set `"publish": false`
4545
in that member's `deno.json`:
4646

4747
```jsonc title="internal-helpers/deno.json"

0 commit comments

Comments
 (0)