Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Dec 13, 2023
1 parent 3380744 commit 412e285
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ end
# rubocop:disable Metrics/CyclomaticComplexity
def browse_cmd(url)
require 'rbconfig'
browser = ENV.fetch('BROWSER') { (RbConfig::CONFIG['host_os'].include?('darwin') && 'open') } ||
browser = ENV.fetch('BROWSER') { RbConfig::CONFIG['host_os'].include?('darwin') && 'open' } ||
(RbConfig::CONFIG['host_os'] =~ /msdos|mswin|djgpp|mingw|windows/ && 'start') ||
%w[xdg-open x-www-browser firefox opera mozilla netscape].find { |comm| which comm }

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
"test": "test/javascript/run-qunit.mjs"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.1",
"chrome-launcher": "^1.0.0",
"puppeteer-core": "^21.5.2",
"rollup": "^4.5.2",
"puppeteer-core": "^21.6.1",
"rollup": "^4.9.0",
"rollup-plugin-copy": "^3.5.0",
"standard": "^17.1.0"
},
Expand Down

0 comments on commit 412e285

Please sign in to comment.