Skip to content

Commit

Permalink
build: fix peer dep warning for listr2
Browse files Browse the repository at this point in the history
The previous version specified `@inquirer/prompts < 7` which caused
a warning about invalid peer deps. The only difference between 2.0.17
and 2.0.18 is that this range was expanded to `< 8`.

See: listr2/listr2#730

Fixes: #28870
(cherry picked from commit 3a017aa)
  • Loading branch information
jkrems committed Nov 15, 2024
1 parent 684f62c commit 2ca5611
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"@discoveryjs/json-ext": "0.6.3",
"@inquirer/confirm": "5.0.2",
"@inquirer/prompts": "7.1.0",
"@listr2/prompt-adapter-inquirer": "2.0.17",
"@listr2/prompt-adapter-inquirer": "2.0.18",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@angular-devkit/core": "0.0.0-PLACEHOLDER",
"@angular-devkit/schematics": "0.0.0-PLACEHOLDER",
"@inquirer/prompts": "7.1.0",
"@listr2/prompt-adapter-inquirer": "2.0.17",
"@listr2/prompt-adapter-inquirer": "2.0.18",
"@schematics/angular": "0.0.0-PLACEHOLDER",
"@yarnpkg/lockfile": "1.1.0",
"ini": "5.0.0",
Expand Down
14 changes: 7 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ __metadata:
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
"@angular-devkit/schematics": "npm:0.0.0-PLACEHOLDER"
"@inquirer/prompts": "npm:7.1.0"
"@listr2/prompt-adapter-inquirer": "npm:2.0.17"
"@listr2/prompt-adapter-inquirer": "npm:2.0.18"
"@schematics/angular": "npm:0.0.0-PLACEHOLDER"
"@yarnpkg/lockfile": "npm:1.1.0"
ini: "npm:5.0.0"
Expand Down Expand Up @@ -663,7 +663,7 @@ __metadata:
"@discoveryjs/json-ext": "npm:0.6.3"
"@inquirer/confirm": "npm:5.0.2"
"@inquirer/prompts": "npm:7.1.0"
"@listr2/prompt-adapter-inquirer": "npm:2.0.17"
"@listr2/prompt-adapter-inquirer": "npm:2.0.18"
"@rollup/plugin-alias": "npm:^5.1.1"
"@rollup/plugin-commonjs": "npm:^28.0.0"
"@rollup/plugin-node-resolve": "npm:^13.0.5"
Expand Down Expand Up @@ -3122,14 +3122,14 @@ __metadata:
languageName: node
linkType: hard

"@listr2/prompt-adapter-inquirer@npm:2.0.17":
version: 2.0.17
resolution: "@listr2/prompt-adapter-inquirer@npm:2.0.17"
"@listr2/prompt-adapter-inquirer@npm:2.0.18":
version: 2.0.18
resolution: "@listr2/prompt-adapter-inquirer@npm:2.0.18"
dependencies:
"@inquirer/type": "npm:^1.5.5"
peerDependencies:
"@inquirer/prompts": ">= 3 < 7"
checksum: 10c0/c0798ac53173cf11c54d7f3a46c841f24e278c5ec856389b56a96634c9a0cd3bd9d72a062eb54be1112f6f8bdf70f94f03a8af45e633710b9ef1727ebc869702
"@inquirer/prompts": ">= 3 < 8"
checksum: 10c0/580d2f0ae414cf3090c2fbfe4623649e448d930b3ff24b0211e64e0e037f1a3ffff5307bc36c10cdc0c4a35fc12f04190585e864c4ce05fbf5f062b41ff29e40
languageName: node
linkType: hard

Expand Down

0 comments on commit 2ca5611

Please sign in to comment.