Skip to content

Commit

Permalink
add inquirer as devdependency
Browse files Browse the repository at this point in the history
  • Loading branch information
georgexu99 committed Nov 21, 2022
1 parent 3ae6768 commit a66687e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .husky/pre-push.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ const question = [
];

inquirer.prompt(question).then((answer) => {
if (answer.continuePush == false) process.exit(1);
if (!answer.continuePush) process.exit(1);
process.exit(0);
});
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
"fork-ts-checker-webpack-plugin": "^7.2.13",
"generate-changelog": "^1.8.0",
"husky": "^7.0.1",
"inquirer": "^8.0.0",
"lerna": "^6.0.1",
"lint-staged": "^12.1.7",
"listr2": "^4.0.4",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7106,7 +7106,7 @@ inquirer@^6.2.0:
strip-ansi "^5.1.0"
through "^2.3.6"

inquirer@^8.2.4:
inquirer@^8.0.0, inquirer@^8.2.4:
version "8.2.5"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8"
integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==
Expand Down

0 comments on commit a66687e

Please sign in to comment.