@pnpm/cli.commands 1100.0.23 → 1100.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,7 +12,7 @@ export async function complete(ctx, input) {
12
12
  };
13
13
  // Autocompleting option values
14
14
  if (input.currentTypedWordType !== 'option') {
15
- if (input.lastOption === '--filter') {
15
+ if (input.lastOption === '--filter' || input.lastOption === '-F') {
16
16
  const workspaceDir = await findWorkspaceDir(process.cwd()) ?? process.cwd();
17
17
  const workspaceManifest = await readWorkspaceManifest(workspaceDir);
18
18
  const allProjects = await findWorkspaceProjects(workspaceDir, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/cli.commands",
3
- "version": "1100.0.23",
3
+ "version": "1100.0.24",
4
4
  "description": "Commands for pnpm CLI",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -35,8 +35,8 @@
35
35
  "@pnpm/cli.command": "^1100.0.1",
36
36
  "@pnpm/cli.parse-cli-args": "^1100.1.5",
37
37
  "@pnpm/cli.utils": "^1101.0.13",
38
+ "@pnpm/config.reader": "1101.11.0",
38
39
  "@pnpm/error": "^1100.0.1",
39
- "@pnpm/config.reader": "1101.10.1",
40
40
  "@pnpm/workspace.root-finder": "^1100.0.3",
41
41
  "@pnpm/workspace.projects-reader": "^1101.0.13",
42
42
  "@pnpm/workspace.workspace-manifest-reader": "^1100.0.9"
@@ -47,8 +47,8 @@
47
47
  "devDependencies": {
48
48
  "@jest/globals": "30.4.1",
49
49
  "@types/ramda": "0.31.1",
50
- "@pnpm/logger": "1100.0.0",
51
- "@pnpm/cli.commands": "1100.0.23"
50
+ "@pnpm/cli.commands": "1100.0.24",
51
+ "@pnpm/logger": "1100.0.0"
52
52
  },
53
53
  "engines": {
54
54
  "node": ">=22.13"