Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
This is documentation for pnpm9.x, which is no longer actively maintained.
For up-to-date documentation, see thelatest version (10.x).
Version: 9.x

Workspace

pnpm has built-in support for monorepositories (AKA multi-package repositories,multi-project repositories, or monolithic repositories). You can create aworkspace to unite multiple projects inside a single repository.

A workspace must have apnpm-workspace.yaml file in itsroot. A workspace also may have an.npmrc in its root.

tip

If you are looking into monorepo management, you might also want to look intoBit.Bit uses pnpm under the hood but automates a lot of the things that are currently done manually in a traditional workspace managed by pnpm/npm/Yarn. There's an article aboutbit install that talks about it:Painless Monorepo Dependency Management with Bit.

Workspace protocol (workspace:)

Iflink-workspace-packages is set totrue, pnpm will link packages from the workspace if the available packagesmatch the declared ranges. For instance,foo@1.0.0 is linked intobar ifbar has"foo": "^1.0.0" in its dependencies andfoo@1.0.0 is in the workspace. However, ifbar has"foo": "2.0.0" in dependencies andfoo@2.0.0 is not in the workspace,foo@2.0.0 will be installed from the registry. This behavior introduces someuncertainty.

Luckily, pnpm supports theworkspace: protocol. Whenthis protocol is used, pnpm will refuse to resolve to anything other than alocal workspace package. So, if you set"foo": "workspace:2.0.0", this timeinstallation will fail because"foo@2.0.0" isn't present in the workspace.

This protocol is especially useful when thelink-workspace-packages option isset tofalse. In that case, pnpm will only link packages from the workspace iftheworkspace: protocol is used.

Referencing workspace packages through aliases

Let's say you have a package in the workspace namedfoo. Usually, you wouldreference it as"foo": "workspace:*".

If you want to use a different alias, the following syntax will work too:"bar": "workspace:foo@*".

Before publish, aliases are converted to regular aliased dependencies. The aboveexample will become:"bar": "npm:foo@1.0.0".

Referencing workspace packages through their relative path

In a workspace with 2 packages:

+ packages
+ foo
+ bar

bar may havefoo in its dependencies declared as"foo": "workspace:../foo". Before publishing, these specs are converted toregular version specs supported by all package managers.

Publishing workspace packages

When a workspace package is packed into an archive (whether it's throughpnpm pack or one of the publish commands likepnpm publish), we dynamicallyreplace anyworkspace: dependency by:

  • The corresponding version in the target workspace (if you useworkspace:*,workspace:~, orworkspace:^)
  • The associated semver range (for any other range type)

So for example, if we havefoo,bar,qar,zoo in the workspace and they all are at version1.5.0, the following:

{
"dependencies":{
"foo":"workspace:*",
"bar":"workspace:~",
"qar":"workspace:^",
"zoo":"workspace:^1.5.0"
}
}

Will be transformed into:

{
"dependencies":{
"foo":"1.5.0",
"bar":"~1.5.0",
"qar":"^1.5.0",
"zoo":"^1.5.0"
}
}

This feature allows you to depend on your local workspace packages while stillbeing able to publish the resulting packages to the remote registry withoutneeding intermediary publish steps - your consumers will be able to use yourpublished workspaces as any other package, still benefitting from the guaranteessemver offers.

Release workflow

Versioning packages inside a workspace is a complex task and pnpm currently doesnot provide a built-in solution for it. However, there are 2 well tested toolsthat handle versioning and support pnpm:

For how to set up a repository using Rush, readthis page.

For using Changesets with pnpm, readthis guide.

Troubleshooting

pnpm cannot guarantee that scripts will be run in topological order if there are cycles between workspace dependencies. If pnpm detects cyclic dependencies during installation, it will produce a warning. If pnpm is able to find out which dependencies are causing the cycles, it will display them too.

If you see the messageThere are cyclic workspace dependencies, please inspect workspace dependencies declared independencies,optionalDependencies anddevDependencies.

Usage examples

Here are a few of the most popular open source projects that use the workspace feature of pnpm:

ProjectStarsMigration dateMigration commit
Next.js2022-05-29f7b81316aea4fc9962e5e54981a6d559004231aa
Material UI2024-01-03a1263e3e5ef8d840252b4857f85b33caa99f471d
Vite2021-09-263e1cce01d01493d33e50966d0d0fd39a86d229f9
Nuxt2022-10-1774a90c566c936164018c086030c7de65b26a5cb6
Vue 3.02021-10-0961c5fbd3e35152f5f32e95bf04d3ee083414cecb
Astro2022-03-08240d88aefe66c7d73b9c713c5da42ae789c011ce
n8n2022-11-09736777385c54d5b20174c9c1fda38bb31fbf14b4
Prisma2021-09-21c4c83e788aa16d61bae7a6d00adc8a58b3789a06
Novu2021-12-23f2ea61f7d7ac7e12db4c9e70767082841ed98b2b
Slidev2021-04-12d6783323eb1ab1fc612577eb63579c8f7bc99c3a
Turborepo2022-03-02fd171519ec02a69c9afafc1bc5d9d1b481fba721
Quasar Framework2024-03-137f8e550bb7b6ab639ce423d02008e7f5e61cbf55
Element Plus2021-09-23f9e192535ff74d1443f1d9e0c5394fad10428629
NextAuth.js2022-05-034f29d39521451e859dbdb83179756b372e3dd7aa
Ember.js2023-10-18b6b05da662497183434136fb0148e1dec544db04
Qwik2022-11-14021b12f58cca657e0a008119bc711405513e1ee9
VueUse2021-09-25826351ba1d9c514e34426c85f3d69fb9875c7dd9
SvelteKit2021-09-26b164420ab26fa04fd0fbe0ac05431f36a89ef193
Verdaccio2021-09-219dbf73e955fcb70b0a623c5ab89649b95146c744
Vercel2023-01-129c768b98b71cfc72e8638bf5172be88c39e8fa69
Vitest2021-12-13d6ff0ccb819716713f5eab5c046861f4d8e4f988
Cycle.js2021-09-21f2187ab6688368edb904b649bd371a658f6a8637
Milkdown2021-09-264b2e1dd6125bc2198fd1b851c4f00eda70e9b913
Nhost2022-02-0710a1799a1fef2f558f737de3bb6cadda2b50e58f
Logto2021-07-290b002e07850c8e6d09b35d22fab56d3e99d77043
Rollup plugins2021-09-2153fb18c0c2852598200c547a0b1d745d15b5b487
icestark2021-12-164862326a8de53d02f617e7b1986774fd7540fccd
ByteMD2021-02-1836ef25f1ea1cd0b08752df5f8c832302017bb7fb
Stimulus Components2024-10-268e100d5b2c02ad5bf0b965822880a60f543f5ec3

[8]ページ先頭

©2009-2025 Movatter.jp