Sha256: c9fc59b9633f98937c07ad7d875695606434459e734fd1a18bbcb18c366a42d3

Contents?: true

Size: 1020 Bytes

Versions: 8

Compression:

Stored size: 1020 Bytes

Contents

require "webpacker/configuration"

say "Copying erb loader to config/webpack/loaders"
copy_file "#{__dir__}/loaders/erb.js", Jets.root.join("config/webpack/loaders/erb.js").to_s

say "Adding erb loader to config/webpack/environment.js"
insert_into_file Jets.root.join("config/webpack/environment.js").to_s,
  "const erb = require('./loaders/erb')\n",
  after: /require\(('|")@rails\/webpacker\1\);?\n/

insert_into_file Jets.root.join("config/webpack/environment.js").to_s,
  "environment.loaders.prepend('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: /\s+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

8 entries across 8 versions & 1 rubygems

Version Path
jetpacker-0.7.0 lib/install/erb.rb
jetpacker-0.6.0 lib/install/erb.rb
jetpacker-0.5.0 lib/install/erb.rb
jetpacker-0.4.2 lib/install/erb.rb
jetpacker-0.4.1 lib/install/erb.rb
jetpacker-0.4.0 lib/install/erb.rb
jetpacker-0.3.0 lib/install/erb.rb
jetpacker-0.2.0 lib/install/erb.rb