aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2018-02-18 17:06:14 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2018-02-18 17:06:14 -0500
commitbec1751ee416aa5a36fd5d147abf97138a0d2efb (patch)
tree0ff1764d25b89f469098a410bb69e909ab609e6b /railties
parent67bf2f41f346a20a34744f7607463e41e42189a5 (diff)
downloadrails-bec1751ee416aa5a36fd5d147abf97138a0d2efb.tar.gz
rails-bec1751ee416aa5a36fd5d147abf97138a0d2efb.tar.bz2
rails-bec1751ee416aa5a36fd5d147abf97138a0d2efb.zip
Add stimulus to list of supported options for --webpack
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/rails/app/app_generator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/app_generator.rb b/railties/lib/rails/generators/rails/app/app_generator.rb
index f206f97c9d..5ee9ae05e3 100644
--- a/railties/lib/rails/generators/rails/app/app_generator.rb
+++ b/railties/lib/rails/generators/rails/app/app_generator.rb
@@ -248,7 +248,7 @@ module Rails
RESERVED_NAMES = %w[application destroy plugin runner test]
class AppGenerator < AppBase # :nodoc:
- WEBPACKS = %w( react vue angular elm )
+ WEBPACKS = %w( react vue angular elm stimulus )
add_shared_options_for "application"