Skip to content

Commit a94491d

Browse files
authored
Merge pull request #231 from ghiculescu/verbose
`verbose` arg for build commands
2 parents f095f3f + 97f110a commit a94491d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/tasks/build.rake

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace :tailwindcss do
33
task :build do |_, args|
44
debug = args.extras.include?("debug")
55
command = Tailwindcss::Commands.compile_command(debug: debug)
6-
puts command.inspect
6+
puts command.inspect if args.extras.include?("verbose")
77
system(*command, exception: true)
88
end
99

@@ -12,7 +12,7 @@ namespace :tailwindcss do
1212
debug = args.extras.include?("debug")
1313
poll = args.extras.include?("poll")
1414
command = Tailwindcss::Commands.watch_command(debug: debug, poll: poll)
15-
puts command.inspect
15+
puts command.inspect if args.extras.include?("verbose")
1616
system(*command)
1717
end
1818
end

0 commit comments

Comments
 (0)