Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 16, 2021 02:12 pm GMT

How to migrate from webpacker to jsbundling-rails (esbuild)

  1. Install jsbundling-rails
  2. Swap pack_tag for include_tag
  3. Import stimulus controllers
  4. Migrate JS entrypoint
  5. Remove webpack
  6. Github Actions
  7. Heroku

1. Install jsbundling-rails

Add to gemfile:

gem 'jsbundling-rails'

In the terminal, run:

`bundle install``rails javascript:install:esbuild`

2. Swap pack_tag for include_tag

The jsbundling:install command inserts a javascript_include_tag tag above the tag in your application.html.erb file. This tag wil include the new javascript entrypoint javascript/application.js for your build script to be included in your application.

Remove the webpack's legacy stylesheet_pack_tag:

# old<%= javascript_pack_tag 'application', 'data-turbo-track': 'reload' %># new<%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>

If your app render multiple layouts, be sure to remove any javascript_pack_tag there too.

3. Import stimulus controllers

Even when you already installed stimulus, run the install command again in your terminal and overwrite any confliction changes. This will import all your existing stimulus controller correctly.

rails stimulus:install

Now, after adding or removing a new stimulus controller you can use a command which will auto-generate the controllers/index.js file.

rails stimulus:manifest:update

4. Migrate JS entrypoint

Move the content from javascript/packs/application.js to
javascript/application.js. After migrating the file, delete the javascript/packs folder which was used by Webpacker.

Make sure to import directories in the javascript folder with a relative path.

// oldrequire("channels")//newimport "./channels"import "./controllers"

5. Remove webpack

Webpack and its tentacles can finally be removed from the application.

A. Webpacker gem

gem 'webpacker', '~> 5.4'

B. Remove webpack packages

Webpack packages and plugins that accumulated over time can be removed too. For me, this included:

  • @rails/webpacker
  • webpack
  • webpack-cli
  • webpack-cli/serve
  • webpack-dev-server
  • clean-webpack-plugin
  • @hotwired/stimulus-webpack-helpers

C. Remove webpack files

Finally, remove all config and start-up files:

  • bin/webpack
  • bin/webpack-dev-server
  • config/webpacker.yml
  • config/webpack (directory)

6. Github Actions

If you use Github Actions as a CI/CD make sure to add in an additional build step to run yarn build. Yarn build will trigger the build step defined in your package.json file: "build": "esbuild app/javascript/*.* --bundle --outdir=app/assets/builds". All javascript files need to be bundled before running the tests in your workflow file.

- name: Build Esbuild  run: yarn build

7. Heroku

If you use heroku to deploy your application, Heroku will NOT automatically install yarn as it does for Webpack!**

Therefore, we need to explicitly set a node buildpack before ruby. You can do this in the terminal or the Heroku Dashboard.

  • Terminal
heroku buildpacks:clearheroku buildpacks:set heroku/nodejsheroku buildpacks:add heroku/ruby
  • DashboardHeroku Dashboard

Resources:


Original Link: https://dev.to/thomasvanholder/how-to-migrate-from-webpacker-to-jsbundling-rails-esbuild-5f2

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To