New Upstream Release - ruby-webpacker

Ready changes

Summary

Merged new upstream version: 5.4.4 (was: 5.4.3).

Resulting package

Built on 2023-06-22T04:17 (took 6m14s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-releases ruby-webpacker

Lintian Result

Diff

diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml
index 01c38d5..3401133 100644
--- a/.github/workflows/ruby.yml
+++ b/.github/workflows/ruby.yml
@@ -7,9 +7,6 @@ jobs:
     name: Ruby specs
     runs-on: ${{ matrix.os }}
     continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || matrix.experimental }}
-    env:
-      BUNDLE_JOBS: 4
-      BUNDLE_RETRY: 3
     strategy:
       fail-fast: false
       matrix:
@@ -34,25 +31,16 @@ jobs:
             gemfile: gemfiles/Gemfile-rails-edge
             experimental: true
 
+    env:
+      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
     steps:
       - uses: actions/checkout@v2
-      - uses: actions/cache@v2
-        with:
-          path: /home/runner/bundle
-          key: bundle-use-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}-gems-${{ hashFiles(matrix.gemfile) }}-${{ hashFiles('**/*.gemspec') }}
-          restore-keys: |
-            bundle-use-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}-gems-
 
       - uses: ruby/setup-ruby@v1
         with:
           ruby-version: ${{ matrix.ruby }}
-
-      - name: Bundle install
-        run: |
-          gem install bundler -v 2.1.4
-          bundle config path /home/runner/bundle
-          bundle config --global gemfile ${{ matrix.gemfile }}
-          bundle install --jobs 4 --retry 3
+          bundler-cache: true
+          rubygems: ${{ matrix.ruby < '2.6' && 'default' || 'latest' }}
 
       - name: Ruby specs
         run: bundle exec rake test
diff --git a/.rubocop.yml b/.rubocop.yml
index d0fe8e0..3af4b3e 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -109,6 +109,9 @@ Layout/TrailingWhitespace:
 Style/RedundantPercentQ:
   Enabled: true
 
+Lint/DeprecatedClassMethods:
+  Enabled: true
+
 # Align `end` with the matching keyword or starting expression except for
 # assignments, where it should be aligned with the LHS.
 Layout/EndAlignment:
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 39be704..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-language: ruby
-dist: xenial
-before_install:
-  - gem install rubygems-update && update_rubygems
-  - yes | rvm @global do gem install bundler -v 2.1.4 || true
-rvm:
-  - 2.4.9
-  - 2.5.5
-  - 2.6.5
-  - 2.7.0
-  - ruby-head
-gemfile:
-  - gemfiles/Gemfile-rails.5.2.x
-  - gemfiles/Gemfile-rails.6.0.x
-  - gemfiles/Gemfile-rails-edge
-cache:
-  bundler: true
-  directories:
-    - node_modules
-  yarn: true
-
-install:
-  - bundle install --jobs 3 --retry 3
-  - nvm install 12
-  - node -v
-  - npm i -g yarn
-  - yarn
-script:
-  - yarn lint
-  - yarn test
-  - bundle exec rubocop
-  - bundle exec rake test
-matrix:
-  allow_failures:
-    - gemfile: gemfiles/Gemfile-rails-edge
-    - rvm: ruby-head
-  exclude:
-    - rvm: 2.4.9
-      gemfile: gemfiles/Gemfile-rails-edge
-    - rvm: 2.5.5
-      gemfile: gemfiles/Gemfile-rails-edge
-    - rvm: 2.4.9
-      gemfile: gemfiles/Gemfile-rails.6.0.x
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0b27343..5f33d48 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,15 @@
 
 **Please note that Webpacker 4.1.0 has an installer bug. Please use 4.2.0 or above**
 
-## [[5.4.2]](https://github.com/rails/webpacker/compare/v5.4.0...v5.4.1) - 2021-08-20
+## [[5.4.4]](https://github.com/rails/webpacker/compare/v5.4.3...v5.4.4) - 2023-01-31
+
+- Fix compatibility with Ruby 3.2. (#3306)
+
+## [[5.4.3]](https://github.com/rails/webpacker/compare/v5.4.2...v5.4.3) - 2021-09-14
+
+-  Specify webpack-dev-server to be v3, to avoid getting webpack-dev-server v4 (#3121)
+
+## [[5.4.2]](https://github.com/rails/webpacker/compare/v5.4.1...v5.4.2) - 2021-08-20
 
 - Fix babel warning about private-methods in @babel/plugin-proposal-private-property-in-object as well.
 
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index cf60efc..12efbd3 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -9,7 +9,7 @@ yarn
 ```
 
 ## Making sure your changes pass all tests
-There are a number of automated checks which run on Travis CI when a pull request is created.
+There are a number of automated checks which run on Github Actions when a pull request is created.
 You can run those checks on your own locally to make sure that your changes would not break the CI build.
 
 ### 1. Check the code for JavaScript style violations
diff --git a/Gemfile.lock b/Gemfile.lock
index f659bc1..39633cc 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    webpacker (5.4.0)
+    webpacker (5.4.4)
       activesupport (>= 5.2)
       rack-proxy (>= 0.6.1)
       railties (>= 5.2)
diff --git a/README.md b/README.md
index 71ac478..1a1c6e0 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,10 @@
 # Webpacker
 
-[![Build Status](https://travis-ci.org/rails/webpacker.svg?branch=master)](https://travis-ci.org/rails/webpacker)
+[![Ruby specs](https://github.com/rails/webpacker/workflows/Ruby%20specs/badge.svg)](https://github.com/rails/webpacker/actions)
+[![Jest specs](https://github.com/rails/webpacker/workflows/Jest%20specs/badge.svg)](https://github.com/rails/webpacker/actions)
+[![Rubocop](https://github.com/rails/webpacker/workflows/Rubocop/badge.svg)](https://github.com/rails/webpacker/actions)
+[![JS lint](https://github.com/rails/webpacker/workflows/JS%20lint/badge.svg)](https://github.com/rails/webpacker/actions)
+
 [![node.js](https://img.shields.io/badge/node-%3E%3D%2010.17.0-brightgreen.svg)](https://www.npmjs.com/package/@rails/webpacker)
 [![Gem](https://img.shields.io/gem/v/webpacker.svg)](https://rubygems.org/gems/webpacker)
 
diff --git a/debian/changelog b/debian/changelog
index 7af081f..b9ebb25 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ruby-webpacker (5.4.4-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Thu, 22 Jun 2023 04:11:45 -0000
+
 ruby-webpacker (5.4.3-2) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/patches/add-webpacker-to-loadpath-in-testapp.patch b/debian/patches/add-webpacker-to-loadpath-in-testapp.patch
index 614afe9..71a916b 100644
--- a/debian/patches/add-webpacker-to-loadpath-in-testapp.patch
+++ b/debian/patches/add-webpacker-to-loadpath-in-testapp.patch
@@ -5,8 +5,10 @@ Description: Add webpacker to $LOAD_PATH in test_app
 Author: Jongmin Kim <jmkim@pukyong.ac.kr>
 Forwarded: not-needed
 Last-Update: 2019-06-21
---- a/test/test_app/Rakefile
-+++ b/test/test_app/Rakefile
+Index: ruby-webpacker.git/test/test_app/Rakefile
+===================================================================
+--- ruby-webpacker.git.orig/test/test_app/Rakefile
++++ ruby-webpacker.git/test/test_app/Rakefile
 @@ -1,3 +1,4 @@
 +$:.unshift("../../lib")
  require_relative "config/application"
diff --git a/debian/patches/disable-internet-access.patch b/debian/patches/disable-internet-access.patch
index c6a4044..c26d000 100644
--- a/debian/patches/disable-internet-access.patch
+++ b/debian/patches/disable-internet-access.patch
@@ -2,9 +2,11 @@ Description: Disable Internet access tests
 Author: Jongmin Kim <jmkim@pukyong.ac.kr>
 Forwarded: not-needed
 Last-Update: 2019-06-21
---- a/test/rake_tasks_test.rb
-+++ b/test/rake_tasks_test.rb
-@@ -39,6 +39,7 @@
+Index: ruby-webpacker.git/test/rake_tasks_test.rb
+===================================================================
+--- ruby-webpacker.git.orig/test/rake_tasks_test.rb
++++ ruby-webpacker.git/test/rake_tasks_test.rb
+@@ -39,6 +39,7 @@ class RakeTasksTest < Minitest::Test
      refute_includes output, "Webpacker requires Yarn"
    end
  
@@ -12,7 +14,7 @@ Last-Update: 2019-06-21
    def test_rake_webpacker_yarn_install_in_non_production_environments
      assert_includes test_app_dev_dependencies, "right-pad"
  
-@@ -62,6 +63,7 @@
+@@ -62,6 +63,7 @@ class RakeTasksTest < Minitest::Test
      refute_includes installed_node_module_names, "right-pad",
                      "Expected only production dependencies to be installed"
    end
diff --git a/debian/patches/remove-git-from-gemspec.patch b/debian/patches/remove-git-from-gemspec.patch
index 030328b..4d8676d 100644
--- a/debian/patches/remove-git-from-gemspec.patch
+++ b/debian/patches/remove-git-from-gemspec.patch
@@ -6,9 +6,11 @@ Description: Remove git from gemspec
 Author: Jongmin Kim <jmkim@pukyong.ac.kr>
 Forwarded: not-needed
 Last-Update: 2019-06-22
---- a/webpacker.gemspec
-+++ b/webpacker.gemspec
-@@ -26,6 +26,5 @@
+Index: ruby-webpacker.git/webpacker.gemspec
+===================================================================
+--- ruby-webpacker.git.orig/webpacker.gemspec
++++ ruby-webpacker.git/webpacker.gemspec
+@@ -26,6 +26,5 @@ Gem::Specification.new do |s|
    s.add_development_dependency "rubocop", "0.93.1"
    s.add_development_dependency "rubocop-performance"
  
diff --git a/debian/patches/skip-check-node.patch b/debian/patches/skip-check-node.patch
index b25fabf..b264582 100644
--- a/debian/patches/skip-check-node.patch
+++ b/debian/patches/skip-check-node.patch
@@ -1,8 +1,10 @@
 This check fails to detect nodejs, moreover apt will ensure nodejs is present
 
---- a/lib/tasks/webpacker/check_node.rake
-+++ b/lib/tasks/webpacker/check_node.rake
-@@ -2,30 +2,7 @@
+Index: ruby-webpacker.git/lib/tasks/webpacker/check_node.rake
+===================================================================
+--- ruby-webpacker.git.orig/lib/tasks/webpacker/check_node.rake
++++ ruby-webpacker.git/lib/tasks/webpacker/check_node.rake
+@@ -2,30 +2,7 @@ require "semantic_range"
  namespace :webpacker do
    desc "Verifies if Node.js is installed"
    task :check_node do
diff --git a/debian/patches/skip-check-yarn.patch b/debian/patches/skip-check-yarn.patch
index 70402fa..06bd8f8 100644
--- a/debian/patches/skip-check-yarn.patch
+++ b/debian/patches/skip-check-yarn.patch
@@ -1,8 +1,10 @@
 Skip checking for yarn which does not work, moreover apt ensures yarn is present
 
---- a/lib/tasks/webpacker/check_yarn.rake
-+++ b/lib/tasks/webpacker/check_yarn.rake
-@@ -2,29 +2,7 @@
+Index: ruby-webpacker.git/lib/tasks/webpacker/check_yarn.rake
+===================================================================
+--- ruby-webpacker.git.orig/lib/tasks/webpacker/check_yarn.rake
++++ ruby-webpacker.git/lib/tasks/webpacker/check_yarn.rake
+@@ -2,29 +2,7 @@ require "semantic_range"
  namespace :webpacker do
    desc "Verifies if Yarn is installed"
    task :check_yarn do
diff --git a/debian/patches/use-system-yarnpkg.patch b/debian/patches/use-system-yarnpkg.patch
index 454bcbb..7512d32 100644
--- a/debian/patches/use-system-yarnpkg.patch
+++ b/debian/patches/use-system-yarnpkg.patch
@@ -5,9 +5,11 @@ Description: Use system yarnpkg instead of yarn
 Author: Jongmin Kim <jmkim@pukyong.ac.kr>
 Forwarded: not-needed
 Last-Update: 2019-06-21
---- a/lib/webpacker/runner.rb
-+++ b/lib/webpacker/runner.rb
-@@ -10,7 +10,7 @@
+Index: ruby-webpacker.git/lib/webpacker/runner.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/webpacker/runner.rb
++++ ruby-webpacker.git/lib/webpacker/runner.rb
+@@ -10,7 +10,7 @@ module Webpacker
        @argv = argv
  
        @app_path              = File.expand_path(".", Dir.pwd)
@@ -16,9 +18,11 @@ Last-Update: 2019-06-21
        @webpack_config        = File.join(@app_path, "config/webpack/#{ENV["NODE_ENV"]}.js")
        @webpacker_config      = File.join(@app_path, "config/webpacker.yml")
  
---- a/test/dev_server_runner_test.rb
-+++ b/test/dev_server_runner_test.rb
-@@ -19,7 +19,7 @@
+Index: ruby-webpacker.git/test/dev_server_runner_test.rb
+===================================================================
+--- ruby-webpacker.git.orig/test/dev_server_runner_test.rb
++++ ruby-webpacker.git/test/dev_server_runner_test.rb
+@@ -19,7 +19,7 @@ class DevServerRunnerTest < Webpacker::T
    end
  
    def test_run_cmd_via_yarn
@@ -27,9 +31,11 @@ Last-Update: 2019-06-21
  
      verify_command(cmd, use_node_modules: false)
    end
---- a/test/webpack_runner_test.rb
-+++ b/test/webpack_runner_test.rb
-@@ -19,7 +19,7 @@
+Index: ruby-webpacker.git/test/webpack_runner_test.rb
+===================================================================
+--- ruby-webpacker.git.orig/test/webpack_runner_test.rb
++++ ruby-webpacker.git/test/webpack_runner_test.rb
+@@ -19,7 +19,7 @@ class WebpackRunnerTest < Webpacker::Tes
    end
  
    def test_run_cmd_via_yarn
@@ -38,9 +44,11 @@ Last-Update: 2019-06-21
  
      verify_command(cmd, use_node_modules: false)
    end
---- a/lib/webpacker/dev_server_runner.rb
-+++ b/lib/webpacker/dev_server_runner.rb
-@@ -50,7 +50,7 @@
+Index: ruby-webpacker.git/lib/webpacker/dev_server_runner.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/webpacker/dev_server_runner.rb
++++ ruby-webpacker.git/lib/webpacker/dev_server_runner.rb
+@@ -50,7 +50,7 @@ module Webpacker
          cmd = if node_modules_bin_exist?
            ["#{@node_modules_bin_path}/webpack-dev-server"]
          else
@@ -49,9 +57,11 @@ Last-Update: 2019-06-21
          end
  
          if @argv.include?("--debug-webpacker")
---- a/lib/webpacker/webpack_runner.rb
-+++ b/lib/webpacker/webpack_runner.rb
-@@ -10,7 +10,7 @@
+Index: ruby-webpacker.git/lib/webpacker/webpack_runner.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/webpacker/webpack_runner.rb
++++ ruby-webpacker.git/lib/webpacker/webpack_runner.rb
+@@ -10,7 +10,7 @@ module Webpacker
        cmd = if node_modules_bin_exist?
          ["#{@node_modules_bin_path}/webpack"]
        else
@@ -60,9 +70,11 @@ Last-Update: 2019-06-21
        end
  
        if @argv.include?("--debug-webpacker")
---- a/lib/install/angular.rb
-+++ b/lib/install/angular.rb
-@@ -7,7 +7,7 @@
+Index: ruby-webpacker.git/lib/install/angular.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/angular.rb
++++ ruby-webpacker.git/lib/install/angular.rb
+@@ -7,7 +7,7 @@ say "Copying hello_angular app to #{Webp
  directory "#{__dir__}/examples/angular/hello_angular", "#{Webpacker.config.source_path}/hello_angular"
  
  say "Installing all angular dependencies"
@@ -71,9 +83,11 @@ Last-Update: 2019-06-21
  
  if Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR > 1
    say "You need to enable unsafe-eval rule.", :yellow
---- a/lib/install/coffee.rb
-+++ b/lib/install/coffee.rb
-@@ -20,6 +20,6 @@
+Index: ruby-webpacker.git/lib/install/coffee.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/coffee.rb
++++ ruby-webpacker.git/lib/install/coffee.rb
+@@ -20,6 +20,6 @@ copy_file "#{__dir__}/examples/coffee/he
    "#{Webpacker.config.source_entry_path}/hello_coffee.coffee"
  
  say "Installing all Coffeescript dependencies"
@@ -81,9 +95,11 @@ Last-Update: 2019-06-21
 +run "yarnpkg add coffeescript@1.12.7 coffee-loader"
  
  say "Webpacker now supports Coffeescript πŸŽ‰", :green
---- a/lib/install/elm.rb
-+++ b/lib/install/elm.rb
-@@ -21,10 +21,10 @@
+Index: ruby-webpacker.git/lib/install/elm.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/elm.rb
++++ ruby-webpacker.git/lib/install/elm.rb
+@@ -21,10 +21,10 @@ copy_file "#{__dir__}/examples/elm/Main.
    "#{Webpacker.config.source_path}/Main.elm"
  
  say "Installing all Elm dependencies"
@@ -98,9 +114,11 @@ Last-Update: 2019-06-21
  
  say "Updating webpack paths to include .elm file extension"
  insert_into_file Webpacker.config.config_path, "- .elm\n".indent(4), after: /\s+extensions:\n/
---- a/lib/install/erb.rb
-+++ b/lib/install/erb.rb
-@@ -20,6 +20,6 @@
+Index: ruby-webpacker.git/lib/install/erb.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/erb.rb
++++ ruby-webpacker.git/lib/install/erb.rb
+@@ -20,6 +20,6 @@ copy_file "#{__dir__}/examples/erb/hello
    "#{Webpacker.config.source_entry_path}/hello_erb.js.erb"
  
  say "Installing all Erb dependencies"
@@ -108,9 +126,11 @@ Last-Update: 2019-06-21
 +run "yarnpkg add rails-erb-loader"
  
  say "Webpacker now supports Erb in JS πŸŽ‰", :green
---- a/lib/install/examples/vue/hello_vue.js
-+++ b/lib/install/examples/vue/hello_vue.js
-@@ -49,7 +49,7 @@
+Index: ruby-webpacker.git/lib/install/examples/vue/hello_vue.js
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/examples/vue/hello_vue.js
++++ ruby-webpacker.git/lib/install/examples/vue/hello_vue.js
+@@ -49,7 +49,7 @@ document.addEventListener('DOMContentLoa
  //
  // If the project is using turbolinks, install 'vue-turbolinks':
  //
@@ -119,9 +139,11 @@ Last-Update: 2019-06-21
  //
  // Then uncomment the code block below:
  //
---- a/lib/install/react.rb
-+++ b/lib/install/react.rb
-@@ -13,6 +13,6 @@
+Index: ruby-webpacker.git/lib/install/react.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/react.rb
++++ ruby-webpacker.git/lib/install/react.rb
+@@ -13,6 +13,6 @@ say "Updating webpack paths to include .
  insert_into_file Webpacker.config.config_path, "- .jsx\n".indent(4), after: /\s+extensions:\n/
  
  say "Installing all react dependencies"
@@ -129,9 +151,11 @@ Last-Update: 2019-06-21
 +run "yarnpkg add react react-dom @babel/preset-react prop-types babel-plugin-transform-react-remove-prop-types"
  
  say "Webpacker now supports react.js πŸŽ‰", :green
---- a/lib/install/stimulus.rb
-+++ b/lib/install/stimulus.rb
-@@ -7,6 +7,6 @@
+Index: ruby-webpacker.git/lib/install/stimulus.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/stimulus.rb
++++ ruby-webpacker.git/lib/install/stimulus.rb
+@@ -7,6 +7,6 @@ say "Creating controllers directory"
  directory "#{__dir__}/examples/stimulus/controllers", "#{Webpacker.config.source_path}/controllers"
  
  say "Installing all Stimulus dependencies"
@@ -139,9 +163,11 @@ Last-Update: 2019-06-21
 +run "yarnpkg add stimulus"
  
  say "Webpacker now supports Stimulus.js πŸŽ‰", :green
---- a/lib/install/template.rb
-+++ b/lib/install/template.rb
-@@ -36,10 +36,10 @@
+Index: ruby-webpacker.git/lib/install/template.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/template.rb
++++ ruby-webpacker.git/lib/install/template.rb
+@@ -36,10 +36,10 @@ end
  
  if Webpacker::VERSION.match?(/^[0-9]+\.[0-9]+\.[0-9]+$/)
    say "Installing all JavaScript dependencies [#{Webpacker::VERSION}]"
@@ -154,7 +180,7 @@ Last-Update: 2019-06-21
  end
  
  package_json = File.read("#{__dir__}/../../package.json")
-@@ -48,10 +48,10 @@
+@@ -48,10 +48,10 @@ webpack_cli_version = package_json.match
  
  # needed for experimental Yarn 2 support and should not harm Yarn 1
  say "Installing webpack and webpack-cli as direct dependencies"
@@ -167,9 +193,11 @@ Last-Update: 2019-06-21
  
  if Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR > 1
    say "You need to allow webpack-dev-server host as allowed origin for connect-src.", :yellow
---- a/lib/install/typescript.rb
-+++ b/lib/install/typescript.rb
-@@ -34,6 +34,6 @@
+Index: ruby-webpacker.git/lib/install/typescript.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/typescript.rb
++++ ruby-webpacker.git/lib/install/typescript.rb
+@@ -34,6 +34,6 @@ copy_file "#{__dir__}/examples/typescrip
    "#{Webpacker.config.source_entry_path}/hello_typescript.ts"
  
  say "Installing all typescript dependencies"
@@ -177,9 +205,11 @@ Last-Update: 2019-06-21
 +run "yarnpkg add typescript @babel/preset-typescript #{additional_packages}"
  
  say "Webpacker now supports typescript πŸŽ‰", :green
---- a/lib/install/vue.rb
-+++ b/lib/install/vue.rb
-@@ -33,7 +33,7 @@
+Index: ruby-webpacker.git/lib/install/vue.rb
+===================================================================
+--- ruby-webpacker.git.orig/lib/install/vue.rb
++++ ruby-webpacker.git/lib/install/vue.rb
+@@ -33,7 +33,7 @@ copy_file "#{__dir__}/examples/vue/app.v
    "#{Webpacker.config.source_path}/app.vue"
  
  say "Installing all Vue dependencies"
@@ -188,9 +218,11 @@ Last-Update: 2019-06-21
  
  if Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR > 1
    say "You need to enable unsafe-eval rule.", :yellow
---- a/lib/tasks/webpacker/check_yarn.rake
-+++ b/lib/tasks/webpacker/check_yarn.rake
-@@ -3,7 +3,7 @@
+Index: ruby-webpacker.git/lib/tasks/webpacker/check_yarn.rake
+===================================================================
+--- ruby-webpacker.git.orig/lib/tasks/webpacker/check_yarn.rake
++++ ruby-webpacker.git/lib/tasks/webpacker/check_yarn.rake
+@@ -3,7 +3,7 @@ namespace :webpacker do
    desc "Verifies if Yarn is installed"
    task :check_yarn do
      begin
@@ -199,9 +231,11 @@ Last-Update: 2019-06-21
        raise Errno::ENOENT if yarn_version.blank?
  
        pkg_path = Pathname.new("#{__dir__}/../../../package.json").realpath
---- a/lib/tasks/webpacker/info.rake
-+++ b/lib/tasks/webpacker/info.rake
-@@ -7,13 +7,13 @@
+Index: ruby-webpacker.git/lib/tasks/webpacker/info.rake
+===================================================================
+--- ruby-webpacker.git.orig/lib/tasks/webpacker/info.rake
++++ ruby-webpacker.git/lib/tasks/webpacker/info.rake
+@@ -7,13 +7,13 @@ namespace :webpacker do
      $stdout.puts "Rails: #{Rails.version}"
      $stdout.puts "Webpacker: #{Webpacker::VERSION}"
      $stdout.puts "Node: #{`node --version`}"
@@ -217,9 +251,11 @@ Last-Update: 2019-06-21
 +    $stdout.puts "Is /usr/bin/yarnpkg present?: #{File.exist? '/usr/bin/yarnpkg'}"
    end
  end
---- a/lib/tasks/webpacker/yarn_install.rake
-+++ b/lib/tasks/webpacker/yarn_install.rake
-@@ -6,11 +6,11 @@
+Index: ruby-webpacker.git/lib/tasks/webpacker/yarn_install.rake
+===================================================================
+--- ruby-webpacker.git.orig/lib/tasks/webpacker/yarn_install.rake
++++ ruby-webpacker.git/lib/tasks/webpacker/yarn_install.rake
+@@ -6,11 +6,11 @@ namespace :webpacker do
        valid_node_envs.include?(Rails.env) ? Rails.env : "production"
      end
      yarn_flags =
diff --git a/debian/patches/yaml-unsafe-load.patch b/debian/patches/yaml-unsafe-load.patch
index 6ed1722..e0e4c27 100644
--- a/debian/patches/yaml-unsafe-load.patch
+++ b/debian/patches/yaml-unsafe-load.patch
@@ -7,9 +7,11 @@ Forwarded: not-needed
 Last-Update: 2022-12-03
 ---
 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/test/configuration_test.rb
-+++ b/test/configuration_test.rb
-@@ -67,7 +67,7 @@
+Index: ruby-webpacker.git/test/configuration_test.rb
+===================================================================
+--- ruby-webpacker.git.orig/test/configuration_test.rb
++++ ruby-webpacker.git/test/configuration_test.rb
+@@ -67,7 +67,7 @@ class ConfigurationTest < Webpacker::Tes
  
    def test_extensions
      config_path = File.expand_path File.join(File.dirname(__FILE__), "test_app/config/webpacker.yml").to_s
diff --git a/lib/install/template.rb b/lib/install/template.rb
index 6a38f06..b07377f 100644
--- a/lib/install/template.rb
+++ b/lib/install/template.rb
@@ -13,7 +13,7 @@ copy_file "#{__dir__}/config/babel.config.js", "babel.config.js"
 say "Copying .browserslistrc to app root directory"
 copy_file "#{__dir__}/config/.browserslistrc", ".browserslistrc"
 
-if Dir.exists?(Webpacker.config.source_path)
+if Dir.exist?(Webpacker.config.source_path)
   say "The JavaScript app source directory already exists"
 else
   say "Creating JavaScript app source directory"
@@ -22,7 +22,7 @@ end
 
 apply "#{__dir__}/binstubs.rb"
 
-if File.exists?(".gitignore")
+if File.exist?(".gitignore")
   append_to_file ".gitignore" do
     "\n"                   +
     "/public/packs\n"      +
diff --git a/lib/webpacker/version.rb b/lib/webpacker/version.rb
index 7b38360..73f8e58 100644
--- a/lib/webpacker/version.rb
+++ b/lib/webpacker/version.rb
@@ -1,4 +1,4 @@
 module Webpacker
   # Change the version in package.json too, please!
-  VERSION = "5.4.3".freeze
+  VERSION = "5.4.4".freeze
 end

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in second set of .debs but not in first

-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/angular.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/binstubs.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/coffee.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/.browserslistrc
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/babel.config.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/postcss.config.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/webpack/development.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/webpack/environment.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/webpack/production.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/webpack/test.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/config/webpacker.yml
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/elm.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/erb.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/angular/hello_angular.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/angular/hello_angular/app/app.component.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/angular/hello_angular/app/app.module.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/angular/hello_angular/index.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/angular/hello_angular/polyfills.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/coffee/hello_coffee.coffee
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/elm/Main.elm
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/elm/hello_elm.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/erb/hello_erb.js.erb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/react/babel.config.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/react/hello_react.jsx
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/react/tsconfig.json
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/stimulus/application.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/stimulus/controllers/hello_controller.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/stimulus/controllers/index.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/svelte/app.svelte
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/svelte/hello_svelte.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/typescript/hello_typescript.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/typescript/tsconfig.json
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/vue/app.vue
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/examples/vue/hello_vue.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/javascript/packs/application.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/loaders/coffee.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/loaders/elm.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/loaders/erb.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/loaders/svelte.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/loaders/vue.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/react.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/stimulus.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/svelte.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/template.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/typescript.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/vue.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/installers.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/binstubs.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/check_binstubs.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/check_node.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/check_yarn.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/clean.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/clobber.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/compile.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/info.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/install.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/verify_install.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/tasks/webpacker/yarn_install.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/commands.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/compiler.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/configuration.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/dev_server.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/dev_server_proxy.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/dev_server_runner.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/env.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/helper.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/instance.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/manifest.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/railtie.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/runner.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/version.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/webpacker/webpack_runner.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/specifications/webpacker-5.4.4.gemspec
-rwxr-xr-x  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/bin/webpack
-rwxr-xr-x  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.4/lib/install/bin/webpack-dev-server

Files in first set of .debs but not in second

-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/angular.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/binstubs.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/coffee.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/.browserslistrc
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/babel.config.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/postcss.config.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/webpack/development.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/webpack/environment.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/webpack/production.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/webpack/test.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/config/webpacker.yml
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/elm.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/erb.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/angular/hello_angular.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/angular/hello_angular/app/app.component.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/angular/hello_angular/app/app.module.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/angular/hello_angular/index.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/angular/hello_angular/polyfills.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/coffee/hello_coffee.coffee
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/elm/Main.elm
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/elm/hello_elm.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/erb/hello_erb.js.erb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/react/babel.config.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/react/hello_react.jsx
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/react/tsconfig.json
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/stimulus/application.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/stimulus/controllers/hello_controller.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/stimulus/controllers/index.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/svelte/app.svelte
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/svelte/hello_svelte.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/typescript/hello_typescript.ts
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/typescript/tsconfig.json
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/vue/app.vue
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/examples/vue/hello_vue.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/javascript/packs/application.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/loaders/coffee.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/loaders/elm.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/loaders/erb.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/loaders/svelte.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/loaders/vue.js
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/react.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/stimulus.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/svelte.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/template.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/typescript.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/vue.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/installers.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/binstubs.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/check_binstubs.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/check_node.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/check_yarn.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/clean.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/clobber.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/compile.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/info.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/install.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/verify_install.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/tasks/webpacker/yarn_install.rake
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/commands.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/compiler.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/configuration.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/dev_server.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/dev_server_proxy.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/dev_server_runner.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/env.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/helper.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/instance.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/manifest.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/railtie.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/runner.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/version.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/webpacker/webpack_runner.rb
-rw-r--r--  root/root   /usr/share/rubygems-integration/all/specifications/webpacker-5.4.3.gemspec
-rwxr-xr-x  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/bin/webpack
-rwxr-xr-x  root/root   /usr/share/rubygems-integration/all/gems/webpacker-5.4.3/lib/install/bin/webpack-dev-server

No differences were encountered in the control files

More details

Full run details