Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
Remove unused emoji, import message
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleymichal committed Jun 21, 2019
1 parent 0ac7a93 commit 07e9767
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/commands/build/wranglerjs/bundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use std::path::Path;
use log::info;

use crate::commands::build::wranglerjs::output::WranglerjsOutput;
use crate::terminal::message;

// Directory where we should write the {Bundle}. It represents the built
// artifact.
Expand Down Expand Up @@ -254,7 +255,7 @@ mod tests {
fn cleanup(name: String) {
let current_dir = env::current_dir().unwrap();
let path = Path::new(&current_dir).join(name);
message::info(format!("p: {:?}", path));
message::info(&format!("p: {:?}", path));
fs::remove_dir_all(path).unwrap();
}
}
1 change: 0 additions & 1 deletion src/terminal/emoji.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ pub static INFO: Emoji = Emoji("πŸ’β€ ", "");
pub static MICROSCOPE: Emoji = Emoji("πŸ”¬ ", "");
pub static SHEEP: Emoji = Emoji("πŸ‘ ", "");
pub static SLEUTH: Emoji = Emoji("πŸ•΅οΈβ€β™‚οΈ", "");
pub static SNAIL: Emoji = Emoji("🐌 ", "");
pub static SPARKLES: Emoji = Emoji("✨ ", "");
pub static SWIRL: Emoji = Emoji("πŸŒ€ ", "");
pub static UP: Emoji = Emoji("πŸ†™ ", "");
Expand Down

0 comments on commit 07e9767

Please sign in to comment.