Justin Gordon
Justin Gordon
Possibly related to: https://github.com/fastestforward/heroku_san/pull/86. I can run this command with problem: ``` git push heroku-staging develop:master ``` But if I try to run ``` rake staging deploy ``` I get...
The command needed is heroku pg:psql. I'd like to to have ``` rake production db ``` go directory to this... Also, any option to trace the heroku commands issues?
Default config file should not have dash in comments after `config:`, as that implies a list, whereas the value should be a hash. I can submit a PR if that...
On rspec errors, I get a message ``` Screenshot: [some file path] ``` However, there's no file. I've got the following gem versions: ``` capybara (2.1.0) mime-types (>= 1.16) nokogiri...
- [x] Upgrade to rails/webpacker v6 final - [ ] Integrate https://github.com/shakacode/react-on-webpacker https://www.npmjs.com/package/react-on-webpacker into spec/dummy - [x] Upgrade of spec/dummy examples to Rails 7 - [x] Upgrade spec/dummy to React...
This change is broken: https://github.com/shakacode/react_on_rails/commit/9637c09e46372f92d09113a2eb61b3658b47b351#diff-ee77363403f2346e5588ba25b2ef77d2b8e70d3c699fec17edf68fa3dd3b6766R127 ## Repro: 1. Set react_on_rails.rb to have `config.build_production_command = "yarn start build.prod"` 2. Run `RAILS_ENV=production NODE_ENV=production rake assets:precompile`. `bin/webpacker` will run twice. ## Workaround `WEBPACKER_PRECOMPILE=false...
1. path-based routing 2. more examples with TS 3. easier configuration of webpack, using rails/webpacker What else? https://github.com/shakacode/react_on_rails_tutorial_with_ssr_and_hmr_fast_refresh/blob/master/babel.config.js
Here's the default config: ```ruby config.server_bundle_js_file = "server-bundle.js" ``` There apparently is no check if the server_bundle_js_file is undefined, blank. A non-blank file name gives an appropriate error. The current...
config.build_production_command cannot be used to compile the rails/webpacker way since https://github.com/shakacode/react_on_rails/blob/master/lib/tasks/assets.rake#L10 ```ruby unless ReactOnRails::WebpackerUtils.webpacker_webpack_production_config_exists? ``` The fix should be that if you want to define a custom module for building,...
# Motivation Because server rendering often uses `react_component_hash` to get the meta tags for SEO, we can't just flip a switch and turn off server rendering to debug the code...