Skip to content

Commit c4151fb

Browse files
author
Barthélémy Ledoux
authored
fix: accept webapck 4 & 5 as peer dependencies of @cypress/vue and @cypress/react (#16290)
1 parent b2ccd4d commit c4151fb

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

npm/react/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@
9696
"webpack-cli": "3.3.9"
9797
},
9898
"peerDependencies": {
99-
"@babel/core": "^=7.x",
100-
"@babel/preset-env": "^=7.x",
99+
"@babel/core": ">=7",
100+
"@babel/preset-env": ">=7",
101101
"@cypress/webpack-dev-server": "*",
102102
"@types/react": "^16.9.16 || ^17.0.0",
103-
"babel-loader": "^=8.x",
103+
"babel-loader": ">=8",
104104
"cypress": "*",
105-
"next": "^=8.x",
105+
"next": ">=8",
106106
"react": "^=16.x || ^=17.x",
107107
"react-dom": "^=16.x || ^=17.x",
108-
"webpack": "^=3.x"
108+
"webpack": ">=4"
109109
},
110110
"files": [
111111
"dist",

npm/vue/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@
5555
},
5656
"peerDependencies": {
5757
"@cypress/webpack-dev-server": "*",
58-
"babel-loader": "8",
5958
"cypress": ">=4.5.0",
60-
"vue": "2.x"
59+
"vue": "^2.0.0"
6160
},
6261
"files": [
6362
"dist/**/*",

0 commit comments

Comments
 (0)