Skip to content

Commit 6fe47d8

Browse files
committed
remove npm check and fix release workflow typo
1 parent 490fb6c commit 6fe47d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
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

packages/cli/src/cli/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import yargs from "yargs";
22
import { hideBin } from "yargs/helpers";
3-
import { checkVersionMiddleware } from "./helpers/checkNpmVersion.ts";
3+
// import { checkVersionMiddleware } from "./helpers/checkNpmVersion.ts";
44
import { globalOptions } from "./helpers/options.ts";
55
import initCommand from "./handlers/init/index.ts";
66
import 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)

0 commit comments

Comments
 (0)