You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/glossary.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -701,4 +701,13 @@ Nick
701
701
predicate
702
702
predicates
703
703
In programming, a predicate is a test which returns `true` or `false`.
704
+
705
+
pnpm workspace
706
+
workspace
707
+
pnpm has built-in support for monorepositories (also known as multi-package repositories, multi-project repositories, or monolithic repositories).
708
+
Workspaces provide support to manage multiple packages from your local file system from within a singular top-level, root package.
709
+
By defining a single `package.json` file at the root of the repository and specifying the individual packages as workspaces, pnpm treats them as interdependent projects.
710
+
711
+
When you run `pnpm install` at the root of the repository, pnpm installs dependencies for all workspaces, ensuring consistency across the entire project.
712
+
This centralized approach streamlines development, facilitates code sharing, and simplifies the maintenance of complex projects.
0 commit comments