File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4343
4444 - name : Compile
4545 run : |
46- deno task compie :all
46+ deno task compile :all
4747
4848 - name : Bump version
4949 id : bump_version
Original file line number Diff line number Diff line change 11import yargs from "yargs" ;
22import { hideBin } from "yargs/helpers" ;
3- import { checkVersionMiddleware } from "./helpers/checkNpmVersion.ts" ;
3+ // import { checkVersionMiddleware } from "./helpers/checkNpmVersion.ts";
44import { globalOptions } from "./helpers/options.ts" ;
55import initCommand from "./handlers/init/index.ts" ;
66import auditCommand from "./handlers/audit/index.ts" ;
@@ -14,9 +14,9 @@ export function initCli() {
1414
1515 yargs ( hideBin ( process . argv ) )
1616 . scriptName ( "napi" )
17- . middleware ( async ( ) => {
18- await checkVersionMiddleware ( ) ;
19- } )
17+ // .middleware(async () => {
18+ // await checkVersionMiddleware();
19+ // })
2020 . options ( globalOptions )
2121 . command ( initCommand )
2222 . command ( auditCommand )
You can’t perform that action at this time.
0 commit comments