There are several substantial changes in Webpacker 6 that you need to manually account for when coming from Webpacker 5. This guide will help you through it.
By default, Webpacker 6 is focused on compiling and bundling JavaScript. This pairs with the existing asset pipeline in Rails that's setup to transpile CSS and static images using Sprockets. For most developers, that's the recommended combination. But if you'd like to use Webpacker for CSS and static assets as well, please see integrations for more information.
Webpacker used to configure Webpack indirectly, which lead to a complicated secondary configuration process. This was done in order to provide default configurations for the most popular frameworks, but ended up creating more complexity than it cured. So now Webpacker delegates all configuration directly to Webpack's default configuration setup.
This means you have to configure integration with frameworks yourself, but webpack-merge helps with this. See this example for Vue and scroll to the bottom for more examples.
- Consider changing from the v5 default for
source_entry_path.
source_path: app/javascript
source_entry_path: packsconsider changing to the v6 default:
source_path: app/javascript
source_entry_path: /Then consider moving your app/javascript/packs/* (including application.js) to app/javascript/ and updating the configuration file.
Note, moving your files is optional, as you can stil keep your entries in a separate directory, called something like packs, or entries. This directory is defined within the source_path.
- Ensure no nested directories in your
source_entry_path. Check if you had any entry point files in child directories of yoursource_entry_path. Files for entry points in child directories are not supported by rails/webpacker v6. Move those files to the top level, adjusting any imports in those files.
The new v6 configuration does not allow nesting, so as to allow placing the entry points at in the root directory of JavaScript. You can find this change here.
-
Rename
config/webpacktoconfig/webpack_old -
Rename
config/webpacker.ymltoconfig/webpacker_old.yml -
Update
webpack-dev-serverto the current version, greater than 4.2, updatingpackage.json. -
Upgrade the Webpacker Ruby gem and NPM package
Note: Check the releases page to verify the latest version, and make sure to install identical version numbers of webpacker gem and @rails/webpacker npm package. (Gems use a period and packages use a dot between the main version number and the beta version.)
Example going to a specific version:
# Gemfile
gem 'webpacker', '6.0.0.rc.5'bundle installyarn add @rails/webpacker@6.0.0-rc.5 --exactbundle exec rails webpacker:install-
Update API usage of the view helpers by changing
javascript_packs_with_chunks_tagandstylesheet_packs_with_chunks_tagtojavascript_pack_tagandstylesheet_pack_tag. Ensure that your layouts and views will only have at most one call tojavascript_pack_tagand at most one call tostylesheet_pack_tag. You can now pass multiple bundles to these view helper methods. If you fail to changes this, you may experience performance issues, and other bugs related to multiple copies of React, like issue 2932. If you expose jquery globally withexpose-loader,by usingimport $ from "expose-loader?exposes=$,jQuery!jquery"in yourapp/javascript/application.js, pass the optiondefer: falseto yourjavascript_pack_tag. -
If you are using any integrations like
css,postcss,ReactorTypeScript. Please see https://github.com/rails/webpacker#integrations section on how they work in v6. -
Copy over any custom webpack config from
config/webpack_old. Common code previously called 'environment' should be changed to 'base', and importenvironmentchanged towebpackConfig.
// config/webpack/base.js
const { webpackConfig, merge } = require('@rails/webpacker')
const customConfig = require('./custom')
module.exports = merge(webpackConfig, customConfig)-
Copy over custom browserlist config from
.browserslistrcif it exists into the"browserslist"key inpackage.jsonand remove.browserslistrc. -
Remove
babel.config.jsif you never changed it. Be sure to have this config in yourpackage.json:
"babel": {
"presets": [
"./node_modules/@rails/webpacker/package/babel/preset.js"
]
}See customization example the Customizing Babel Config for React configuration.
extensionswas removed from thewebpacker.ymlfile. Move custom extensions to your configuration by merging an object like this. For more details, see docs for Webpack Configuration
{
resolve: {
extensions: ['.ts', '.tsx', '.vue', '.css']
}
}-
Some dependencies were removed in PR 3056. If you see the error:
Error: Cannot find module 'babel-plugin-macros', or similar, then you need toyarn add <dependency>where might include:babel-plugin-macros,case-sensitive-paths-webpack-plugin,core-js,regenerator-runtime. Or you might want to remove your dependency on those. -
If
bin/yarndoes not exist, create an executable yarn file in your/bindirectory. -
Remove overlapping dependencies from your
package.jsonand rails/webpacker'spackage.json. For example, don't includewebpackdirectly as that's a dependency of rails/webpacker. -
Review the new default's changes to
webpacker.ymlandconfig/webpack. Consider each suggested change carefully, especially the change to have yoursource_entry_pathbe at the top level of yoursource_path. -
Make sure that you can run
bin/webpackerwithout errors. -
Try running
RAILS_ENV=production bin/rails assets:precompile. If all goes well, don't forget to clean the generated assets withbin/rails assets:clobber. -
Run
yarn add webpack-dev-serverif those are not already in your dev dependencies. Make sure you're using v4+. -
Try your app!
-
Update any scripts that called
/bin/webpackorbin/webpack-dev-serverto/bin/webpackerorbin/webpacker-dev-server