Skip to content

Commit

Permalink
fix(deps): hard-code inquirer version (#9)
Browse files Browse the repository at this point in the history
Issue #9 seems to be a consequence of
plopjs/plop#445. As a temporary workaround, as
suggested in that issue's comments, I'm hard-coding the 9.3.5 version of
`inquirer` in `package.json`, which should fix the issue for now. If and
when Plop and/or Inquirer fix the root cause, this temporary fix here
should be reverted and a newer minimum version of `plop` should be
required in the `package.json` file.

Fixes #9.
  • Loading branch information
nvlang committed Sep 1, 2024
1 parent 6cc4dfb commit cfecc15
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 70 deletions.
11 changes: 11 additions & 0 deletions extras/create-sveltex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,16 @@
"minimist": "^1.2.8",
"picocolors": "^1.0.1",
"plop": "^4.0.1"
},
"overrides": {
"node-plop": {
"inquirer": "9.3.5"
}
},
"resolutions": {
"inquirer": "9.3.5"
},
"peerDependencies": {
"inquirer": "9.3.5"
}
}
Loading

0 comments on commit cfecc15

Please sign in to comment.