File tree Expand file tree Collapse file tree 4 files changed +9
-17
lines changed
Expand file tree Collapse file tree 4 files changed +9
-17
lines changed Original file line number Diff line number Diff line change @@ -67,3 +67,7 @@ client/app/bundles/comments/rescript/**/*.bs.js
6767
6868.claude /
6969.context /
70+
71+ # Chrome DevTools debug scripts (development-only)
72+ check_early_hints.js
73+ check_early_hints.py
Original file line number Diff line number Diff line change @@ -35,11 +35,13 @@ def run_precompile_tasks
3535
3636 # Build ReScript files first
3737 print " ReScript build... "
38- if system ( "yarn res:build > /dev/null 2>&1" )
38+ output = `yarn res:build 2>&1`
39+ if $?. success?
3940 puts "✅"
4041 else
4142 puts "❌"
42- puts " Failed to build ReScript files. Run 'yarn res:build' to see errors."
43+ puts " Failed to build ReScript files:"
44+ output . each_line { |line | puts " #{ line } " }
4345 exit 1
4446 end
4547
Original file line number Diff line number Diff line change @@ -72,4 +72,4 @@ production:
7272 # Early hints configuration
7373 early_hints :
7474 enabled : true
75- debug : true # Set to true to output debug info as HTML comments
75+ debug : false # Set to true to output debug info as HTML comments (exposes internals)
Original file line number Diff line number Diff line change 8989 Capybara . reset_sessions!
9090 end
9191
92- # RSpec Rails can automatically mix in different behaviours to your tests
93- # based on their file location, for example enabling you to call `get` and
94- # `post` in specs under `spec/controllers`.
95- #
96- # You can disable this behaviour by removing the line below, and instead
97- # explicitly tag your specs with their type, e.g.:
98- #
99- # RSpec.describe UsersController, :type => :controller do
100- # # ...
101- # end
102- #
103- # The different available types are documented in the features, such as in
104- # https://relishapp.com/rspec/rspec-rails/docs
105- config . infer_spec_type_from_file_location!
10692 config . include Capybara ::DSL
10793
10894 # This will insert a <base> tag with the asset host into the pages created by
You can’t perform that action at this time.
0 commit comments