Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove male sign after emoji #1849

Merged
merged 1 commit into from
May 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/tasks/alchemy/webpacker.rake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace :alchemy do
desc "Install Alchemy JavaScript dependencies as specified via Yarn"
task :install do
Dir.chdir(File.join(__dir__, "../..")) do
puts "🧙‍♂️ Install AlchemyCMS JS bundle"
puts "🧙 Install AlchemyCMS JS bundle"
system "yarn install --no-progress --production"
end
end
Expand All @@ -17,7 +17,7 @@ namespace :alchemy do
require "fileutils"
Webpacker.with_node_env("production") do
start = Time.now
puts "🧙‍♂️ Compile AlchemyCMS JS packs"
puts "🧙 Compile AlchemyCMS JS packs"
if Alchemy.webpacker.commands.compile
FileUtils.cp_r(
Alchemy::Engine.root.join("public", "alchemy-packs"),
Expand All @@ -27,7 +27,7 @@ namespace :alchemy do
# Failed compilation
exit!
end
puts "🧙‍♂️ Done in #{(Time.now - start).round(2)}s."
puts "🧙 Done in #{(Time.now - start).round(2)}s."
end
end
end
Expand Down