File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import meowOrExit from 'meow'
22
33import { runRawNpm } from './run-raw-npm.ts'
44import constants from '../../constants'
5- import { commonFlags , validationFlags } from '../../flags'
65import { getFlagListOutput } from '../../utils/output-formatting'
76
87import 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>
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import meowOrExit from 'meow'
22
33import { runRawNpx } from './run-raw-npx.ts'
44import constants from '../../constants'
5- import { commonFlags , validationFlags } from '../../flags'
65import { getFlagListOutput } from '../../utils/output-formatting'
76
87import 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>
You can’t perform that action at this time.
0 commit comments