Skip to content

Commit

Permalink
Fix open-ended range in case
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Dec 14, 2022
1 parent 1c54413 commit c89eb02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/install/esbuild/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
when 7.1...8.0
run %(npm set-script build "#{build_script}")
run %(yarn build)
when 8.0..
when (8.0..)
run %(npm pkg set scripts.build="#{build_script}")
run %(yarn build)
else
Expand Down
2 changes: 1 addition & 1 deletion lib/install/rollup/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
when 7.1...8.0
run %(npm set-script build "#{build_script}")
run %(yarn build)
when 8.0..
when (8.0..)
run %(npm pkg set scripts.build="#{build_script}")
run %(yarn build)
else
Expand Down
2 changes: 1 addition & 1 deletion lib/install/webpack/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
when 7.1...8.0
run %(npm set-script build "#{build_script}")
run %(yarn build)
when 8.0..
when (8.0..)
run %(npm pkg set scripts.build="#{build_script}")
run %(yarn build)
else
Expand Down

0 comments on commit c89eb02

Please sign in to comment.