Skip to content

Commit 2e0ce58

Browse files
committed
Fix "Unmet peer dependencies" warning
- Showed when run "yarn install --check-files" and push to heroku. - By run "yarn upgrade webpack@^4.0.0" to add "webpack": "^4.0.0" to package.json. - Followed by run "yarn install --check-files" to update the yarn.lock file. (Source: rails/webpacker#1078)
1 parent 063e3a3 commit 2e0ce58

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"@rails/webpacker": "4.2.2",
99
"bootstrap": "3.4.1",
1010
"jquery": "3.5.1",
11-
"turbolinks": "^5.2.0"
11+
"turbolinks": "^5.2.0",
12+
"webpack": "^4.0.0"
1213
},
1314
"version": "0.1.0",
1415
"devDependencies": {

yarn.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -7352,7 +7352,7 @@ webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-
73527352
source-list-map "^2.0.0"
73537353
source-map "~0.6.1"
73547354

7355-
webpack@^4.41.2:
7355+
webpack@^4.0.0, webpack@^4.41.2:
73567356
version "4.43.0"
73577357
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6"
73587358
integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g==

0 commit comments

Comments
 (0)