Skip to content

Commit 7631f2d

Browse files
committed
Change -s to --silent for yarn
1 parent 772b5ad commit 7631f2d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yact"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
edition = "2021"
55
readme = "README.md"
66
license = "GPL-3.0-or-later"

src/external_transformers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl ShellCommandTransformer {
107107
* will print to stdout, ultimately ending up in the
108108
* formatted file contents.
109109
*/
110-
command.args(["run", "-s", "prettier"]);
110+
command.args(["--silent", "run", "prettier"]);
111111
command
112112
}
113113
None => Command::new("prettier"),

0 commit comments

Comments
 (0)