-
Notifications
You must be signed in to change notification settings - Fork 648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transition to webpack 5 #4982
Merged
Merged
Transition to webpack 5 #4982
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
55702db
transition to webpack 5
TheTrio 3a75ee2
Fix coverage
TheTrio 3c9eab5
fix source maps
TheTrio 19d1354
Remove parallel webpack
TheTrio 7b578ca
Switch to rtlcss-webpack-plugin
TheTrio cad1962
Set compression of babel cache to false
TheTrio 82062b3
Clean up the configs
TheTrio b1e3a4c
Updated lodash plugin
TheTrio 4610c83
enable threads for eslint
TheTrio fc50cfb
Disable threads during development and add option to disable linting
TheTrio 98fe934
Merge branch 'master' into develop
TheTrio 482a1c4
resolve conflicts
TheTrio f546e86
Merged CSS and JS webpack configs
TheTrio 757ca33
Show progress during build and coverage
TheTrio File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,7 +103,7 @@ This file is generated by `grunt build`, do not edit it by hand. | |
display: block; | ||
width: 12px; | ||
height: 12px; | ||
background: url('/assets/images/chosen-sprite.png') -42px 1px no-repeat; | ||
background: url('../images/chosen-sprite.png') -42px 1px no-repeat; | ||
font-size: 1px; | ||
} | ||
.chosen-container-single .chosen-single abbr:hover { | ||
|
@@ -124,7 +124,7 @@ This file is generated by `grunt build`, do not edit it by hand. | |
display: block; | ||
width: 100%; | ||
height: 100%; | ||
background: url('/assets/images/chosen-sprite.png') no-repeat -2px 10px; | ||
background: url('../images/chosen-sprite.png') no-repeat -2px 10px; | ||
background-size: 56px 41px; | ||
} | ||
.chosen-container-single .chosen-search { | ||
|
@@ -141,8 +141,8 @@ This file is generated by `grunt build`, do not edit it by hand. | |
height: auto; | ||
outline: 0; | ||
border: 1px solid #aaa; | ||
background: white url('/assets/images/chosen-sprite.png') no-repeat 100% -20px; | ||
background: url('/assets/images/chosen-sprite.png') no-repeat 100% -20px; | ||
background: white url('../images/chosen-sprite.png') no-repeat 100% -20px; | ||
background: url('../images/chosen-sprite.png') no-repeat 100% -20px; | ||
font-size: 1em; | ||
font-family: sans-serif; | ||
line-height: normal; | ||
|
@@ -287,7 +287,7 @@ This file is generated by `grunt build`, do not edit it by hand. | |
display: block; | ||
width: 12px; | ||
height: 12px; | ||
background: url('/assets/images/chosen-sprite.png') -42px 1px no-repeat; | ||
background: url('../images/chosen-sprite.png') -42px 1px no-repeat; | ||
font-size: 1px; | ||
} | ||
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover { | ||
|
@@ -424,8 +424,8 @@ This file is generated by `grunt build`, do not edit it by hand. | |
} | ||
.chosen-rtl .chosen-search input[type="text"] { | ||
padding: 4px 5px 4px 20px; | ||
background: white url('/assets/images/chosen-sprite.png') no-repeat -30px -20px; | ||
background: url('/assets/images/chosen-sprite.png') no-repeat -30px -20px; | ||
background: white url('../images/chosen-sprite.png') no-repeat -30px -20px; | ||
background: url('../images/chosen-sprite.png') no-repeat -30px -20px; | ||
direction: rtl; | ||
} | ||
.chosen-rtl.chosen-container-single .chosen-single div b { | ||
|
@@ -445,7 +445,7 @@ This file is generated by `grunt build`, do not edit it by hand. | |
.chosen-container-multi .chosen-choices .search-choice .search-choice-close, | ||
.chosen-container .chosen-results-scroll-down span, | ||
.chosen-container .chosen-results-scroll-up span { | ||
background-image: url('/assets/images/[email protected]') !important; | ||
background-image: url('../images/[email protected]') !important; | ||
background-size: 56px 41px !important; | ||
background-repeat: no-repeat !important; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ragesoss Need to validate if
coverage.rake
file is working as expected since the output inpublic/assets/javascripts/main.js
might have changed from webpack 4 to 5.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, I tried it out locally and the coverage.rake is still working.