@pnpm/cli.parse-cli-args 1100.0.0 → 1100.1.0
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.
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import nopt from '@pnpm/nopt';
|
|
|
3
3
|
import { findWorkspaceDir } from '@pnpm/workspace.root-finder';
|
|
4
4
|
import didYouMean, { ReturnTypeEnums } from 'didyoumean2';
|
|
5
5
|
const RECURSIVE_CMDS = new Set(['recursive', 'multi', 'm']);
|
|
6
|
-
const SPECIALLY_ESCAPED_CMDS = new Set(['run', 'dlx']);
|
|
6
|
+
const SPECIALLY_ESCAPED_CMDS = new Set(['run', 'dlx', 'with']);
|
|
7
7
|
export async function parseCliArgs(opts, inputArgv) {
|
|
8
8
|
const noptExploratoryResults = nopt({
|
|
9
9
|
filter: [String],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/cli.parse-cli-args",
|
|
3
|
-
"version": "1100.
|
|
3
|
+
"version": "1100.1.0",
|
|
4
4
|
"description": "Parses the CLI args passed to pnpm",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"tempy": "3.0.0",
|
|
34
|
-
"@pnpm/cli.parse-cli-args": "1100.
|
|
34
|
+
"@pnpm/cli.parse-cli-args": "1100.1.0"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=22.13"
|