Skip to content

Commit b142835

Browse files
committed
This does not have special args
1 parent eb15ca5 commit b142835

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/commands/raw-npm/cmd-raw-npm.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import meowOrExit from 'meow'
22

33
import { runRawNpm } from './run-raw-npm.ts'
44
import constants from '../../constants'
5-
import { commonFlags, validationFlags } from '../../flags'
65
import { getFlagListOutput } from '../../utils/output-formatting'
76

87
import type { CliCommandConfig } from '../../utils/meow-with-subcommands.ts'
@@ -13,10 +12,7 @@ const config: CliCommandConfig = {
1312
commandName: 'raw-npm',
1413
description: `Temporarily disable the Socket ${NPM} wrapper`,
1514
hidden: false,
16-
flags: {
17-
...commonFlags,
18-
...validationFlags
19-
},
15+
flags: {},
2016
help: (parentName, config) => `
2117
Usage
2218
$ ${parentName} ${config.commandName} <command>

src/commands/raw-npx/cmd-raw-npx.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import meowOrExit from 'meow'
22

33
import { runRawNpx } from './run-raw-npx.ts'
44
import constants from '../../constants'
5-
import { commonFlags, validationFlags } from '../../flags'
65
import { getFlagListOutput } from '../../utils/output-formatting'
76

87
import type { CliCommandConfig } from '../../utils/meow-with-subcommands.ts'
@@ -13,10 +12,7 @@ const config: CliCommandConfig = {
1312
commandName: 'raw-npx',
1413
description: `Temporarily disable the Socket ${NPX} wrapper`,
1514
hidden: false,
16-
flags: {
17-
...commonFlags,
18-
...validationFlags
19-
},
15+
flags: {},
2016
help: (parentName, config) => `
2117
Usage
2218
$ ${parentName} ${config.commandName} <command>

0 commit comments

Comments
 (0)