diff options
author | 2023-03-20 06:20:16 -0700 | |
---|---|---|
committer | 2023-03-20 06:20:16 -0700 | |
commit | aaef99ab68b9de128747077ac74d535c1fb46ff4 (patch) | |
tree | fa0fa9de9287437a06771d903dd4ba45b2ce1922 | |
parent | 1a25af5e3dde2389c747e18d565cedf39c79a43d (diff) | |
download | bun-aaef99ab68b9de128747077ac74d535c1fb46ff4.tar.gz bun-aaef99ab68b9de128747077ac74d535c1fb46ff4.tar.zst bun-aaef99ab68b9de128747077ac74d535c1fb46ff4.zip |
Update install.mdbun-v0.5.8
-rw-r--r-- | docs/cli/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cli/install.md b/docs/cli/install.md index deeb57629..53d1a45fc 100644 --- a/docs/cli/install.md +++ b/docs/cli/install.md @@ -310,12 +310,12 @@ To try it, specify a list of sub-packages in the `workspaces` field of your `pac { "name": "my-project", "version": "1.0.0", - "workspaces": ["packages/a", "packages/b"] + "workspaces": ["packages/*"] } ``` {% callout %} -**Glob support** — Bun doesn't support globs for workspace names yet, but this is coming soon! +**Glob support** — Bun v0.5.8 added support for simple globs for workspace names, with a "*/" at the end. Nothing too fancy. {% /callout %} This has a couple major benefits. |