If you face any issues, please report them at https://github.com/shakacode/shakapacker/issues.
esbuild is a Go-based bundler tool that can offer significant improvement over other similar tools.
While esbuild is a complete bundler, through the usage of esbuild-loader, you can still leverage esbuild's speedy transpilation and minification in your Webpack-based configs.
Please note, that unlike Babel or SWC loader, esbuild-loader has got no support for things like:
- React Hot Module reload
- ES5 as a compilation target
- Automatic polyfills for missing browser features
Those are limitations of esbuild itself and might make use of esbuild-loader in your project unfeasible. If you don't care about HMR and don't need to support older browsers, esbuild-loader might be a suitable option for you.
To use esbuild as your transpiler today. You need to do two things:
- Make sure you've installed
esbuild
andesbuild-loader
packages.
npm install esbuild esbuild-loader
- Add or change
webpack_loader
value in your defaultshakapacker.yml
config toesbuild
The default configuration of babel is done by usingpackage.json
to use the file within theshakapacker
package.
default: &default
source_path: app/javascript
source_entry_path: /
public_root_path: public
public_output_path: packs
cache_path: tmp/shakapacker
webpack_compile_output: true
# Additional paths webpack should look up modules
# ['app/assets', 'engine/foo/app/assets']
additional_paths: []
# Reload manifest.json on all requests so we reload latest compiled packs
cache_manifest: false
# Select loader to use, available options are 'babel' (default), 'swc' or 'esbuild'
webpack_loader: 'esbuild'
You can gain an additional performance boost if you replace the default Terser minification with esbuild plugin.
o do so, you need to modify your webpack configuration and use ESBuildMinifyPlugin
provided by esbuild-loader
.
Example:
const { generateWebpackConfig } = require('shakapacker')
const { ESBuildMinifyPlugin } = require('esbuild-loader')
const options = {
optimization: {
minimizer: [
new ESBuildMinifyPlugin({
target: 'es2015'
})
]
}
}
module.exports = generateWebpackConfig(options)
For more details, see instructions at https://github.com/shakacode/shakapacker#webpack-configuration and https://github.com/privatenumber/esbuild-loader#js-minification-eg-terser.
React is supported out of the box, provided you use .jsx
or .tsx
file extension. Shakapacker config will correctly recognize those and tell esbuild to parse the JSX syntax correctly. If you wish to customize the likes of JSX fragment function, you can do that through customizing loader options as described below. You can see available options at https://github.com/privatenumber/esbuild-loader#%EF%B8%8F-options.
Typescript is supported out of the box and .tsconfig.json
root file is automatically detected. Only a subset of .tsconfig.json
options is supported. Please refer to the loader docs for additional information.
You can see the default loader options at esbuild/index.js.
If you wish to customize the loader defaults further, you need to create a esbuild.config.js
file in your app config folder.
This file should have a single default export which is an object with an options
key. Your customizations will be merged with default loader options. You can use this to override or add additional configurations.
Inside the options
key, you can use any options available to the esbuild-loader. For the options reference, please refer to esbuild-loader docs.
See some examples below of potential config/babel.config.js
.
const customConfig = {
options: {
target: 'esnext'
}
}
module.exports = customConfig
const { env } = require('shakapacker')
const customConfig = {
options: {
jsxFragment: 'Fragment',
jsxFactory: 'h'
}
}
module.exports = customConfig