Skip to content

Commit

Permalink
fix(cli): missed inquirer dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Sep 2, 2021
1 parent 0fe4fe2 commit c303f35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"bugs": {
"url": "https://github.com/napi-rs/napi-rs/issues"
},
"dependencies": {
"inquirer": "^8.1.2"
},
"devDependencies": {
"@octokit/rest": "^18.10.0",
"@types/inquirer": "^7.3.3",
Expand All @@ -39,7 +42,6 @@
"clipanion": "^3.0.1",
"debug": "^4.3.2",
"fdir": "^5.1.0",
"inquirer": "^8.1.2",
"js-yaml": "^4.1.0",
"putasset": "^5.0.3",
"toml": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"build:test:aarch64": "yarn --cwd ./test_module build-aarch64",
"build:test:android": "yarn --cwd ./test_module build --target aarch64-linux-android",
"build:test:armv7": "yarn --cwd ./test_module build-armv7",
"bundle": "esbuild ./cli/src/index.ts --bundle --platform=node --outdir=cli/scripts --main-fields=\"module,main,browser\" --external:iconv-lite",
"bundle": "esbuild ./cli/src/index.ts --bundle --platform=node --outdir=cli/scripts --main-fields=\"module,main,browser\" --external:inquirer --external:iconv-lite",
"format": "run-p format:md format:json format:yaml format:source format:rs",
"format:md": "prettier --parser markdown --write ./**/*.md",
"format:json": "prettier --parser json --write ./**/*.json",
Expand Down

0 comments on commit c303f35

Please sign in to comment.