File tree 1 file changed +30
-30
lines changed
1 file changed +30
-30
lines changed Original file line number Diff line number Diff line change @@ -89,36 +89,36 @@ function main(flags) {
89
89
} ) ;
90
90
}
91
91
92
- main ( yargs
93
- . options ( {
94
- cwd : {
95
- description : 'directory to execute in' ,
96
- type : 'string ' ,
97
- } ,
98
- skipMain : {
99
- default : false ,
100
- type : 'boolean' ,
101
- description : 'Skip main checks ' ,
102
- } ,
103
- skipBin : {
104
- default : false ,
105
- type : 'boolean' ,
106
- description : 'Skip bin checks ' ,
107
- } ,
108
- skipImport : {
109
- default : false ,
110
- type : 'boolean' ,
111
- description : 'Skip import smoke test ' ,
112
- } ,
113
- } )
114
- . scriptName ( 'pkg-check' )
115
- . usage ( 'pkg-check\n ' )
116
- . usage ( 'Check if a package creates valid tarballs ' )
117
- . example ( '$0' , ' ')
118
- . help ( )
119
- . version ( )
120
- . strict ( )
121
- . argv
92
+ main (
93
+ yargs
94
+ . options ( {
95
+ cwd : {
96
+ description : 'directory to execute in ' ,
97
+ type : 'string' ,
98
+ } ,
99
+ skipMain : {
100
+ default : false ,
101
+ type : 'boolean ' ,
102
+ description : 'Skip main checks' ,
103
+ } ,
104
+ skipBin : {
105
+ default : false ,
106
+ type : 'boolean ' ,
107
+ description : 'Skip bin checks' ,
108
+ } ,
109
+ skipImport : {
110
+ default : false ,
111
+ type : 'boolean ' ,
112
+ description : 'Skip import smoke test' ,
113
+ } ,
114
+ } )
115
+ . scriptName ( 'pkg-check' )
116
+ . usage ( 'pkg-check\n ' )
117
+ . usage ( 'Check if a package creates valid tarballs ')
118
+ . example ( '$0' , '' )
119
+ . help ( )
120
+ . version ( )
121
+ . strict ( ) . argv
122
122
)
123
123
. then ( ( report ) => {
124
124
if ( report . problems . length > 0 ) {
You can’t perform that action at this time.
0 commit comments