13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/generators/boring/jquery/install/install_generator.rb', line 13
def add_jquery_plugin_provider_to_webpack_environment
say "Initailizing tailwind configuration", :green
if File.exist?("config/webpack/environment.js")
insert_into_file "config/webpack/environment.js", " const webpack = require(\"webpack\")\n\n environment.plugins.append(\"Provide\", new webpack.ProvidePlugin({\n $: 'jquery',\n jQuery: 'jquery'\n }))\n RUBY\n else\n say <<~WARNING, :red\n ERROR: Looks like the webpacker installation is incomplete. Could not find environment.js in config/webpack.\n WARNING\n end\nend\n", after: /@rails\/webpacker.*\n/
|