Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## [Unreleased]
* No unreleased changes
### Added
* Add warning when upgrading webpacker

## 6.1.3 / 2022-05-25
### Fixed
Expand Down
5 changes: 5 additions & 0 deletions lib/tasks/audit_bundle.rake
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ namespace :bundle do
platforms.each do |platform|
system("gem fetch #{gem} --version=#{new_gem_version2} --platform=#{platform}")
end
end if Dir.exist?('vendor/cache')

if gem == 'webpacker'
puts 'TODO: update package.json and yarn.lock with bin/rails webpacker:install'
puts ' and git add / git remove files in vendor/npm-packages-offline-cache'
end

if File.exist?(SAFETY_FILE)
Expand Down