Sha256: 23866e6a1c70c4aae3a95e6e98628a5eab2b4a6e652195ca85ae2c5e7526609b
Contents?: true
Size: 1010 Bytes
Versions: 1
Compression:
Stored size: 1010 Bytes
Contents
require "webpacker/configuration" say "Copying erb loader to config/webpack/loaders" copy_file "#{__dir__}/loaders/erb.js", Rails.root.join("config/webpack/loaders/erb.js").to_s say "Adding erb loader to config/webpack/environment.js" insert_into_file Rails.root.join("config/webpack/environment.js").to_s, "const erb = require('./loaders/erb')\n", after: "require('@rails/webpacker')\n" insert_into_file Rails.root.join("config/webpack/environment.js").to_s, "environment.loaders.append('erb', erb)\n", before: "module.exports" say "Updating webpack paths to include .erb file extension" insert_into_file Webpacker.config.config_path, "- .erb\n".indent(4), after: /extensions:\n/ say "Copying the example entry file to #{Webpacker.config.source_entry_path}" copy_file "#{__dir__}/examples/erb/hello_erb.js.erb", "#{Webpacker.config.source_entry_path}/hello_erb.js.erb" say "Installing all Erb dependencies" run "yarn add rails-erb-loader" say "Webpacker now supports Erb in JS 🎉", :green
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webpacker-4.0.0.pre.3 | lib/install/erb.rb |