Capistrano v3.* extension to run Symfony's Webpack Encore during deployment.
Add this line to your application's Gemfile:
gem 'capistrano', '~> 3.3.0'
gem 'capistrano-webpack-encore'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-webpack-encore
Require in Capfile
to use the default task:
require 'capistrano/webpack_encore'
The build command is executed during deploy:updated
Configurable options:
set :webpack_encore_env, "production" # default
set :webpack_encore_flags, "" # default
Released under the MIT license