WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit e0419e6

Browse files
committed
docs: document v10.20
1 parent 8f988ac commit e0419e6

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

blog/releases/10.20.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: pnpm 10.20
3+
authors: zkochan
4+
tags: [release]
5+
date: 2025-10-28
6+
---
7+
8+
This release adds a `--all` flag for the `pnpm help` command to print all commands.
9+
10+
<!-- truncate -->
11+
12+
### Minor Changes
13+
14+
#### `pnpm help --all`
15+
16+
Added support for `--all` option in `pnpm help` to list all commands [#8628](https://github.com/pnpm/pnpm/pull/8628).
17+
18+
### Patch Changes
19+
20+
- When the `latest` version doesn't satisfy the maturity requirement configured by `minimumReleaseAge`, pick the highest version that is mature enough, even if it has a different major version [#10100](https://github.com/pnpm/pnpm/issues/10100).
21+
- `create` command should not verify patch info.
22+
- Set `managePackageManagerVersions` to `false`, when switching to a different version of pnpm CLI, in order to avoid subsequent switches [#10063](https://github.com/pnpm/pnpm/issues/10063).

docs/cli/help.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,11 @@ title: "pnpm help <command>"
44
---
55

66
Display help information about pnpm.
7+
8+
## Options
9+
10+
### --all, -a
11+
12+
Added in: v10.20.0
13+
14+
Print all the available commands.

docusaurus.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ const docusaurusConfig = {
7979
"blog": {
8080
"path": "blog",
8181
editUrl: ({locale, blogDirPath, blogPath}) => makeEditUrl(locale, blogDirPath, blogPath),
82+
blogSidebarTitle: 'All posts',
83+
blogSidebarCount: 'ALL',
8284
},
8385
"theme": {
8486
customCss: require.resolve('./src/css/customTheme.css'),

0 commit comments

Comments
 (0)