You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am attempting to change the location of the application's entry point, as well as the destination. Following the guide in the README, I have changed the values in config/initializers/parcel.rb to be the following:
Rails.application.config.parcel do |parcel|
parcel.entry_points = %w(app/assets/javascripts/application.js)
parcel.destination = 'public/assets'
end
I then receive the following output from the console, from running bundle exec rake assets:precompile
Obviously this is a hacky fix. I want to know if this is something I can help look into. I've browsed the repo and I haven't figured out where the initializer is supposed to override the value set in the lib/parcel-rails.rb file that is within the library.
The text was updated successfully, but these errors were encountered:
I am attempting to change the location of the application's entry point, as well as the destination. Following the guide in the README, I have changed the values in config/initializers/parcel.rb to be the following:
I then receive the following output from the console, from running
bundle exec rake assets:precompile
I am able to fix this by editing <gem_dir>/parcel-rails-0.9.3/lib/parcel-rails.rb
and changing the block
to
Obviously this is a hacky fix. I want to know if this is something I can help look into. I've browsed the repo and I haven't figured out where the initializer is supposed to override the value set in the lib/parcel-rails.rb file that is within the library.
The text was updated successfully, but these errors were encountered: