-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathhelpers.rb
47 lines (41 loc) · 1.2 KB
/
helpers.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'json'
module Helpers
def bundler_cmd
using_bun? ? "bun" : "yarn"
end
def bundler_run_cmd
using_bun? ? "bun run" : "yarn"
end
def bundler_x_cmd
using_bun? ? "bunx" : "npx"
end
def using_bun?
tool_exists?('bun') && (File.exist?('bun.lockb') ||
File.exist?('bun.lock'))
end
def tool_exists?(tool)
system "command -v #{tool} > /dev/null"
end
def add_package_json_script(name, script, run_script=true)
if using_bun?
package_json = JSON.parse(File.read("package.json"))
package_json["scripts"] ||= {}
package_json["scripts"][name] = script.gsub('\\"', '"')
File.write("package.json", JSON.pretty_generate(package_json))
run %(bun run #{name}) if run_script
else
case `npx -v`.to_f
when 7.1...8.0
say "Add #{name} script"
run %(npm set-script #{name} "#{script}")
run %(yarn #{name}) if run_script
when (8.0..)
say "Add #{name} script"
run %(npm pkg set scripts.#{name}="#{script}")
run %(yarn #{name}) if run_script
else
say %(Add "scripts": { "#{name}": "#{script}" } to your package.json), :green
end
end
end
end